-
Notifications
You must be signed in to change notification settings - Fork 9
/
README.Rmd
68 lines (49 loc) · 2.66 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
---
output: github_document
---
<!-- 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-",
out.width = "100%"
)
```
# neonDivData
<!-- badges: start -->
<!-- badges: end -->
The goal of neonDivData is to provide cleaned NEON organismal data to facilitate biodiversity research. The authors of this R data package have all spend lots of effort to clean NEON data for our own research; it makes the most sense to document such processes and provide the clean data product so that the large community can use them readily. This will save us time to dig into the extensive documenations of NEON data and to clean up the data individually.
Data products for all taxonomic groups are long data frames with names in the format of `data_xxx` (e.g. `data_plant`, `data_fish`). Location inforamtions are in `neon_location`; taxonomic informations are in `neon_taxa`.
Despite the aim of this R data package is to facilitate biodiversity research, we keep `NA`s in data products so that information about sampling effort is saved. For some taxonomic groups, we removed observations with above genus level species identification. All codes to clean up the NEON data are available within our [Github repo](https://github.com/daijiang/neonDivData/tree/master/data-raw). Users can use them to customize their own data product if needed.
Available taxonomic groups and their brief summaries:
```{r}
# sites too long, don't print
knitr::kable(neonDivData::data_summary[, !names(neonDivData::data_summary) %in% c("sites", "data_package_id")])
```
## Installation
You can install the development version of neonDivData from [Github](https://github.com/daijiang/neonDivData) with:
``` r
install.packages("neonDivData", repos = 'https://daijiang.r-universe.dev')
```
## Available data products
```{r example}
neonDivData::neon_sites
neonDivData::neon_taxa
neonDivData::neon_location
neonDivData::data_algae
neonDivData::data_beetle
neonDivData::data_bird
neonDivData::data_fish
neonDivData::data_herp_bycatch
neonDivData::data_macroinvertebrate
neonDivData::data_mosquito
neonDivData::data_plant
neonDivData::data_small_mammal
neonDivData::data_tick
neonDivData::data_tick_pathogen
```
# Contributing
Contributions are welcome. You can provide comments and feedback or ask questions by filing an issue on Github [here](https://github.com/daijiang/neonDivData/issues) or making pull requests.
# Code of conduct
Please note that the 'neonDivData' project is released with a [Contributor Code of Conduct](CODE_OF_CONDUCT.md). By contributing to this project, you agree to abide by its terms.