Skip to content

Commit 7007704

Browse files
github-actions[bot]dieghernan
authored andcommitted
Update docs with pkgdev
1 parent dc98fd1 commit 7007704

File tree

5 files changed

+41
-44
lines changed

5 files changed

+41
-44
lines changed

README.md

+28-28
Original file line numberDiff line numberDiff line change
@@ -86,34 +86,34 @@ object, (for example, `as_tibble()` would return a `tibble`).
8686

8787
Current methods and functions provided by **tidyterra** are:
8888

89-
| tidyverse method | `SpatVector` | `SpatRaster` |
90-
|----|----|----|
91-
| `tibble::as_tibble()` | ✔️ | ✔️ |
92-
| `dplyr::select()` | ✔️ | ✔️ Select layers |
93-
| `dplyr::mutate()` | ✔️ | ✔️ Create /modify layers |
94-
| `dplyr::transmute()` | ✔️ | ✔️ |
95-
| `dplyr::filter()` | ✔️ | ✔️ Modify cells values and (additionally) remove outer cells. |
96-
| `dplyr::slice()` | ✔️ | ✔️ Additional methods for slicing by row and column. |
97-
| `dplyr::pull()` | ✔️ | ✔️ |
98-
| `dplyr::rename()` | ✔️ | ✔️ |
99-
| `dplyr::relocate()` | ✔️ | ✔️ |
100-
| `dplyr::distinct()` | ✔️ | |
101-
| `dplyr::arrange()` | ✔️ | |
102-
| `dplyr::glimpse()` | ✔️ | ✔️ |
103-
| `dplyr::inner_join()` family | ✔️ | |
104-
| `dplyr::summarise()` | ✔️ | |
105-
| `dplyr::group_by()` family | ✔️ | |
106-
| `dplyr::rowwise()` | ✔️ | |
107-
| `dplyr::count()`, `tally()` | ✔️ | |
108-
| `dplyr::bind_cols()` / `dplyr::bind_rows()` | ✔️ as `bind_spat_cols()` / `bind_spat_rows()` | |
109-
| `tidyr::drop_na()` | ✔️ | ✔️ Remove cell values with `NA` on any layer. Additionally, outer cells with `NA` are removed. |
110-
| `tidyr::replace_na()` | ✔️ | ✔️ |
111-
| `tidyr::fill()` | ✔️ | |
112-
| `tidyr::pivot_longer()` | ✔️ | |
113-
| `tidyr::pivot_wider()` | ✔️ | |
114-
| `ggplot2::autoplot()` | ✔️ | ✔️ |
115-
| `ggplot2::fortify()` | ✔️ to **sf** via `sf::st_as_sf()` | To a **tibble** with coordinates. |
116-
| `ggplot2::geom_*()` | ✔️ `geom_spatvector()` | ✔️ `geom_spatraster()` and `geom_spatraster_rgb()`. |
89+
| tidyverse method | `SpatVector` | `SpatRaster` |
90+
|---------------------------------------------|-----------------------------------------------|------------------------------------------------------------------------------------------------|
91+
| `tibble::as_tibble()` | ✔️ | ✔️ |
92+
| `dplyr::select()` | ✔️ | ✔️ Select layers |
93+
| `dplyr::mutate()` | ✔️ | ✔️ Create /modify layers |
94+
| `dplyr::transmute()` | ✔️ | ✔️ |
95+
| `dplyr::filter()` | ✔️ | ✔️ Modify cells values and (additionally) remove outer cells. |
96+
| `dplyr::slice()` | ✔️ | ✔️ Additional methods for slicing by row and column. |
97+
| `dplyr::pull()` | ✔️ | ✔️ |
98+
| `dplyr::rename()` | ✔️ | ✔️ |
99+
| `dplyr::relocate()` | ✔️ | ✔️ |
100+
| `dplyr::distinct()` | ✔️ | |
101+
| `dplyr::arrange()` | ✔️ | |
102+
| `dplyr::glimpse()` | ✔️ | ✔️ |
103+
| `dplyr::inner_join()` family | ✔️ | |
104+
| `dplyr::summarise()` | ✔️ | |
105+
| `dplyr::group_by()` family | ✔️ | |
106+
| `dplyr::rowwise()` | ✔️ | |
107+
| `dplyr::count()`, `tally()` | ✔️ | |
108+
| `dplyr::bind_cols()` / `dplyr::bind_rows()` | ✔️ as `bind_spat_cols()` / `bind_spat_rows()` | |
109+
| `tidyr::drop_na()` | ✔️ | ✔️ Remove cell values with `NA` on any layer. Additionally, outer cells with `NA` are removed. |
110+
| `tidyr::replace_na()` | ✔️ | ✔️ |
111+
| `tidyr::fill()` | ✔️ | |
112+
| `tidyr::pivot_longer()` | ✔️ | |
113+
| `tidyr::pivot_wider()` | ✔️ | |
114+
| `ggplot2::autoplot()` | ✔️ | ✔️ |
115+
| `ggplot2::fortify()` | ✔️ to **sf** via `sf::st_as_sf()` | To a **tibble** with coordinates. |
116+
| `ggplot2::geom_*()` | ✔️ `geom_spatvector()` | ✔️ `geom_spatraster()` and `geom_spatraster_rgb()`. |
117117

118118
## :exclamation: A note on performance
119119

codemeta.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@
337337
"SystemRequirements": null
338338
},
339339
"keywords": ["r", "terra", "ggplot-extension", "r-spatial", "rspatial", "cran", "cran-r", "r-package", "rstats", "rstats-package"],
340-
"fileSize": "2426.223KB",
340+
"fileSize": "2434.054KB",
341341
"citation": [
342342
{
343343
"@type": "ScholarlyArticle",

man/geom_spat_contour.Rd

+4-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/geom_spatraster.Rd

+4-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/geom_spatraster_rgb.Rd

+4-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)