Title: | Dataset from the Novel Forests of Singapore |
---|---|
Description: | The raw dataset and model used in Lai et al. (2021) Decoupled responses of native and exotic tree diversities to distance from old-growth forest and soil phosphorous in novel secondary forests. Applied Vegetation Science, 24, e12548. |
Authors: | Hao Ran Lai [aut, cre] |
Maintainer: | Hao Ran Lai <[email protected]> |
License: | CC BY 4.0 |
Version: | 2.1.0 |
Built: | 2025-03-10 05:51:24 UTC |
Source: | https://github.com/hrlai/novelforestsg |
novelforest_data
Download the brms
model fitted to novelforest_data
(Lai et al. 2021).
The model object is too large (16.5 MB) to be included with the package,
so this function downloads the model from the developmental GitHub website.
The generalised linear mixed-effect model was fitted via brms::brm
so
this package is recommended to make full use of the model object.
download_model(save_to = NULL)
download_model(save_to = NULL)
save_to |
Path and name of the file where the R object is saved to. Defaults to NULL, which does not save the model object locally. |
A brms
model output of class brmsfit
,
which is a list containing the input data
and other slots
that store the model components.
Notably, the data
slot contains a data.frame
with the following
response variables:
first-order native taxonomic diversity, i.e., species richness
second-order native taxonomic diversity, i.e., inverse Simpson index
first-order exotic taxonomic diversity
second-order exotic taxonomic diversity
first-order native functional diversity
second-order native functional diversity
first-order exotic functional diversity
second-order exotic functional diversity,
and the following explanatory variables (and measurement units if you backtransform
them using backtransform
):
Distance to old-growth forests (m)
Patch area (km^2)
Total soil nitrogen (mg/kg)
Total extractable soil phosphorous (mg/kg)
Total extractable soil potassium (mg/kg)
Forest patch ID
#' Note that all explanatory variables were log-transformed and standardised to zero mean and
unit standard deviations. Use backtransform
to obtain the variables in
their original scales. See Lai et al. (2021) for more details on model building and
data collection.
Lai, H.R., Tan, G.S.Y., Neo, L., Kee, C.Y., Yee, A.T.K., Tan, H.T.W. and Chong, K.Y. (2021) Decoupled responses of native and exotic tree diversities to distance from old-growth forest and soil phosphorous in novel secondary forests. Applied Vegetation Science, 24, e12548. doi:10.1111/avsc.12548
backtransform, brms::brmsfit, brms::brm
## Not run: novelforest_model <- download_model() # library(brms) # recommended summary(novelforest_model) # to obtain input data novelforest_model$data ## End(Not run)
## Not run: novelforest_model <- download_model() # library(brms) # recommended summary(novelforest_model) # to obtain input data novelforest_model$data ## End(Not run)
The raw data used in Lai et al. (2021) and Neo et al. (2017).
novelforest_data
novelforest_data
A list of four data.frame
:
a table of woody stems measured, with treeID
as the
unique identifier
a table of presences of vascular plant species in each plot
a table of the environmental measurements or landscape
characteristics for each plot, with plotID
as the unique identifier
a table of the patches and their characteristics, with patchID
as the unique identifier
With the following variables:
Forest patch identifier
Plot identifier
Stem identifier
Species name following Chong et al. (2011)
Indicator column denoting whether a stem is the main trunk (=1) of an individual tree, or otherwise (=0)
Diameter-at-breast-height (cm) measured in year 2011.
% Canopy cover
Leaf litter depth / cm
Soil total Nitrogen /g^-1 kg^-1
Soil extractable Phosphorous /mg^-1 kg^-1
Soil extractable Potassium /mg^-1 kg^-1
Distance to nearest old-growth forest /km
Type of forest; ABA
: abandoned-land forest type,
WAS
: waste-woodland forest type
Size (i.e., area) of forest patch /ha
See Lai et al. (2021) or Neo et al. (2017) for more detail on data collection.
Chong, K. Y., Tan, H. T. W. and Corlett, R. T. (2011). A summary of the total vascular plant flora of Singapore. Gardens' Bulletin Singapore, 63, 197-204.
Lai, H.R., Tan, G.S.Y., Neo, L., Kee, C.Y., Yee, A.T.K., Tan, H.T.W. and Chong, K.Y. (2021) Decoupled responses of native and exotic tree diversities to distance from old-growth forest and soil phosphorous in novel secondary forests. Applied Vegetation Science, 24, e12548. doi:10.1111/avsc.12548
Neo, L., Yee, A. T. K., Chong, K. Y., Kee, C. Y. and Tan, H. T. W. (2017). Vascular plant species richness and composition in two types of post-cultivation tropical secondary forest. Applied Vegetation Science, 20, 692-701. doi:10.1111/avsc.12322
# Tree community matrix (by stem counts) comm_stem <- xtabs(~ plot + species, data = novelforest_data$trees) comm_stem[1:10, 1:4] # Species occurrence matrix (of all vascular plants) comm_all <- xtabs(~ plot + species, data = novelforest_data$pres) comm_all[1:10, 1:4] # Reproduce (part of) the summary table (Appendix S2) in the supplementary # material of Neo et al. (2017) with(novelforest_data, apply(plots[3:8], 2, function(x) tapply(x, plots$patch, mean, na.rm = TRUE)) )
# Tree community matrix (by stem counts) comm_stem <- xtabs(~ plot + species, data = novelforest_data$trees) comm_stem[1:10, 1:4] # Species occurrence matrix (of all vascular plants) comm_all <- xtabs(~ plot + species, data = novelforest_data$pres) comm_all[1:10, 1:4] # Reproduce (part of) the summary table (Appendix S2) in the supplementary # material of Neo et al. (2017) with(novelforest_data, apply(plots[3:8], 2, function(x) tapply(x, plots$patch, mean, na.rm = TRUE)) )
Forest community data used in Lai et al. (2021); also comprised part of the raw data used in Neo et al. (2017).
The main component of novelforestSG
is the dataset,
which can be accessed with novelforest_data
.
See ?novelforest_data
for more details.
Hao Ran Lai, [email protected]
Kwek Yan Chong, [email protected]
Alex Thiam Koon Yee
Maintainer: Hao Ran Lai, [email protected]
Lai, H.R., Tan, G.S.Y., Neo, L., Kee, C.Y., Yee, A.T.K., Tan, H.T.W. and Chong, K.Y. (2021) Decoupled responses of native and exotic tree diversities to distance from old-growth forest and soil phosphorous in novel secondary forests. Applied Vegetation Science, 24, e12548. doi:10.1111/avsc.12548
Neo, L., Yee, A. T. K., Chong, K. Y., Kee, C. Y. and Tan, H. T. W. (2017). Vascular plant species richness and composition in two types of post-cultivation tropical secondary forest. Applied Vegetation Science, 20, 692-701. doi:10.1111/avsc.12322