This repository has been archived by the owner on Jul 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#2: Add infrastructure to host and document data.
- Loading branch information
1 parent
6273749
commit af5a3d3
Showing
16 changed files
with
66 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
#' Species table from from Barro Colorado Island (BCI). | ||
#' | ||
#' @examples | ||
#' str(bci.spptable) | ||
"bci.spptable" | ||
|
||
|
||
|
||
#' Example stem-tables from Barro Colorado Island (BCI). | ||
#' | ||
#' @examples | ||
#' str(bci_stem_1995) | ||
#' str(bci_stem_2000) | ||
#' str(bci_stem_2000) | ||
#' @name bci_stem_year | ||
NULL | ||
|
||
# FIXME: bci_stem_1995 is empty | ||
#' @rdname bci_stem_year | ||
"bci_stem_1995" | ||
#' @rdname bci_stem_year | ||
"bci_stem_2000" | ||
#' @rdname bci_stem_year | ||
"bci_stem_2005" | ||
|
||
|
||
|
||
#' Taxonomy for the genus ficus. | ||
#' | ||
#' @examples | ||
#' str(ficus) | ||
"ficus" | ||
|
||
|
||
|
||
#' Information of ForestGEO sites. | ||
#' | ||
#' @examples | ||
#' str(site.info) | ||
"site.info" | ||
|
||
|
||
|
||
#' Density of woods at ForestGEO sites. | ||
#' | ||
#' @examples | ||
#' str(WSG) | ||
"WSG" |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Load all datasets in data-raw/ | ||
paths <- fs::dir_ls(here::here("data-raw"), glob = "*.rda") | ||
purrr::map(paths, load, envir = globalenv()) | ||
|
||
# Source: Ervan Rutishauser ([email protected]), taken form the data/ | ||
# TODO: Where raw-data came from and how you cleaned it (or clean it here)? | ||
|
||
# Use data (compress and move each dataset to data/) | ||
use_data( | ||
bci.spptable, | ||
bci_stem_1995, | ||
bci_stem_2000, | ||
bci_stem_2005, | ||
ficus, | ||
site.info, | ||
WSG, | ||
overwrite = TRUE | ||
) |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.