Loading the data from BCI that I have.
library(fgeo.data)
Creating tables from luquillo.
# rtbl::rtbl(
# luquillo::ViewFullTable_luquillo,
# luquillo::ViewTaxonomy_luquillo,
# plotname = "luquillo"
# )
Comparing columns between datasets.
load(here::here("full/luquillo.full6.rdata"))
luquillo_tree <- luquillo.full6
bci_tree <- fgeo.data::bci_tree6_random
# Not in Luquillo
setdiff(
names(bci_tree),
names(luquillo_tree)
)
## [1] "agb" "ba"
# Not in bci
setdiff(
names(luquillo_tree),
names(bci_tree)
)
## [1] "StemTag" "MeasureID" "CensusID" "pom" "DFstatus"
Comparing columns between datasets.
load(here::here("stem/luquillo.stem6.rdata"))
luquillo_stem <- luquillo.stem6
bci_stem <- fgeo.data::bci_stem6_random
# Not in Luquillo
setdiff(
names(bci_stem),
names(luquillo_stem)
)
## [1] "agb"
# Not in bci
setdiff(
names(luquillo_stem),
names(bci_stem)
)
## [1] "MeasureID" "CensusID" "pom" "countPOM"
From http://ctfs.si.edu/Public/DataDict/data_dict.php.
DT::datatable(data_dictionary)