-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathREADME.Rmd
77 lines (56 loc) · 1.96 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
---
output:
github_document:
html_preview: true
---
<!-- Don't edit README.md; instead, edit README.Rmd -->
```{r setup, echo = FALSE}
knitr::opts_chunk$set(
echo = TRUE,
fig.show = "hold",
fig.align = "center",
out.width = "75%",
fig.width = 7.5,
fig.asp = 0.6,
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-"
)
```
# <img src="https://i.imgur.com/vTLlhbp.png" align="right" height=88 /> Plot ForestGEO data
<!-- badges: start -->
[![R-CMD-check](https://github.com/forestgeo/fgeo.plot/workflows/R-CMD-check/badge.svg)](https://github.com/forestgeo/fgeo.plot/actions)
[![Codecov test coverage](https://codecov.io/gh/forestgeo/fgeo.plot/branch/main/graph/badge.svg)](https://app.codecov.io/gh/forestgeo/fgeo.plot?branch=main)
[![R-CMD-check](https://github.com/forestgeo/fgeo.plot/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/forestgeo/fgeo.plot/actions/workflows/R-CMD-check.yaml)
<!-- badges: end -->
__fgeo.plot__ helps you to plot [ForestGEO](<https://forestgeo.si.edu/>) data.
## Installation
Install the latest stable version of **fgeo.plot** from CRAN with:
```R
install.packages("fgeo.plot")
```
Or install the development version of **fgeo.plot** with:
```R
# install.packages("devtools")
devtools::install_github("forestgeo/fgeo.plot")
```
Or [install all **fgeo** packages in one step](https://forestgeo.github.io/fgeo/index.html#installation).
## Example
```{r fgeo.plot-sp}
library(fgeo.plot)
small_census <- fgeo.x::tree6_3species
autoplot(sp(small_census))
```
```{r}
elevation <- fgeo.x::elevation
autoplot(
sp_elev(small_census, elevation),
fill = "red",
hide_color_legend = TRUE
)
```
[Get started with __fgeo__](https://forestgeo.github.io/fgeo/)
## Information
* [Getting help](https://forestgeo.github.io/fgeo.plot/SUPPORT.html).
* [Contributing](https://forestgeo.github.io/fgeo.plot/CONTRIBUTING.html).
* [Contributor Code of Conduct](https://forestgeo.github.io/fgeo.plot/CODE_OF_CONDUCT.html).