We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6ca574 commit a5fe3f7Copy full SHA for a5fe3f7
episodes/02-raster-plot.Rmd
@@ -90,8 +90,7 @@ and `count()` functions:
90
91
```{r breaks-count}
92
DSM_HARV_df %>%
93
- group_by(fct_elevation) %>%
94
- count()
+ count(fct_elevation)
95
```
96
97
We might prefer to customize the cutoff values for these groups.
@@ -133,8 +132,7 @@ And we can get the count of values in each group in the same way we did before:
133
132
134
```{r break-count-custom}
135
136
- group_by(fct_elevation_2) %>%
137
+ count(fct_elevation_2)
138
139
140
We can use those groups to plot our raster data, with each group being a
0 commit comments