-
Notifications
You must be signed in to change notification settings - Fork 3
/
README.Rmd
84 lines (56 loc) · 1.97 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
77
78
79
80
81
82
83
---
output: github_document
editor_options:
chunk_output_type: console
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-"
)
```
# <img src="https://i.imgur.com/vTLlhbp.png" align="right" height=88 /> Small ForestGEO datasets for examples
[![lifecycle](https://img.shields.io/badge/lifecycle-maturing-blue.svg)](https://www.tidyverse.org/lifecycle/#maturing)
[![Travis build status](https://travis-ci.org/forestgeo/fgeo.x.svg?branch=master)](https://travis-ci.org/forestgeo/fgeo.x)
[![CRAN status](https://www.r-pkg.org/badges/version/fgeo.x)](https://cran.r-project.org/package=fgeo.x)
Access small example datasets from [Luquillo](https://forestgeo.si.edu/sites/north-america/luquillo), a ForestGEO site in Puerto Rico.
## Installation
Install the latest stable version of **fgeo.x** from CRAN with:
```R
install.packages("fgeo.x")
```
Install the development version of **fgeo.x** from GitHub with:
```R
# install.packages("devtools")
devtools::install_github("forestgeo/fgeo.x")
```
Or [install all **fgeo** packages in one step](https://forestgeo.github.io/fgeo/index.html#installation).
## Example
```{r example}
library(fgeo.x)
```
Some datasets available in __fgeo.x__:
```{r}
str(elevation)
str(habitat)
str(tree5)
str(stem5)
str(vft_4quad)
```
Some other datasets that install with __fgeo.x__:
```{r}
example_path()
dir(example_path("view"))
str(read.csv(example_path("vft_4quad.csv")))
```
Download data from [__fgeo.data__](https://forestgeo.github.io/fgeo.data/):
```{r}
str(download_data("luquillo_stem6_random"))
```
[Get started with __fgeo__](https://forestgeo.github.io/fgeo/)
## Information
* [Getting help](https://forestgeo.github.io/fgeo.x/SUPPORT.html).
* [Contributing](https://forestgeo.github.io/fgeo.x/CONTRIBUTING.html).
* [Contributor Code of Conduct](https://forestgeo.github.io/fgeo.x/CODE_OF_CONDUCT.html).