Skip to content

Commit

Permalink
Add missing link in episodes/13-intro-to-raster-data.Rmd
Browse files Browse the repository at this point in the history
  • Loading branch information
cforgaci authored Jan 15, 2024
1 parent b4fb975 commit efbba48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion episodes/13-intro-to-raster-data.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ But note the warning. Unless you force R to calculate these statistics using eve
summary(values(DSM_TUD))
```

To visualise this data in R using `ggplot2`, we need to convert it to a data frame. We learned about data frames in an [earlier lesson](). The `terra` package has a built-in function for conversion to a data frame.
To visualise this data in R using `ggplot2`, we need to convert it to a data frame. We learned about data frames in an [earlier lesson](../episodes/03-explore-data.Rmd). The `terra` package has a built-in function for conversion to a data frame.

```{r}
DSM_TUD_df <- as.data.frame(DSM_TUD, xy = TRUE)
Expand Down

0 comments on commit efbba48

Please sign in to comment.