siteAdjustment {pdi} | R Documentation |
Site adjustment
Description
Perform a site adjustment of selected descriptors.
Usage
siteAdjustment(
phenoData,
descriptors = c("Diameter at breast height (m)", "Lower crown height (m)",
"Timber height (m)", "Total height (m)", "Crown radius (m)")
)
Arguments
phenoData |
phenoData tibble containing phenotype data |
descriptors |
columns of phenoData on which to perform site correction |
Examples
library(dplyr)
## Retrieve file paths for example data
files <- list.files(system.file('phenotypeDataCollectionSheets',
package = 'pdi'),full.names = TRUE)
## Prepare data
d <- map(files,readPhenotypeSheet) %>%
map(preparePhenotypeData) %>%
bind_rows() %>%
siteAdjustment()
[Package pdi version 0.4.2 Index]