View source: R/joinSoilLabData.R
joinSoilLabData | R Documentation |
This function verifies whether O and A horizons were named corrected based on For duplicate horizons on a plot, chemistry variables are corrected using weighted averages, with sample depth as the weight. Must run importData first. Note that Earthworms are summarized in joinStandData(). Only works for complete visits and plots that haven't been abandoned. Note that soils have only been collected once per plot from 2010 to 2014, and have not been sampled in ASIS or COLO.
joinSoilLabData(
park = "all",
from = 2010,
to = 2013,
QAQC = FALSE,
panels = 1:4,
locType = c("VS", "all"),
layer = c("all", "O", "A")
)
park |
Combine data from all parks or one or more parks at a time. Valid inputs:
|
from |
Year to start analysis, ranging from 2010 to 2013. |
to |
Year to stop analysis, ranging from 2010 to 2013. |
QAQC |
Allows you to remove or include QAQC events.
|
panels |
Allows you to select individual panels from 1 to 4. Default is all 4 panels (1:4). If more than one panel is selected, specify by c(1, 3), for example. |
locType |
Allows you to only include plots that are part of the GRTS sample design or include all plots, such as deer exclosures.
|
layer |
Allows you to filter on soil horizons
|
returns a dataframe containing each plot and visit with soil chemistry data for each horizon on a plot Plots that weren't sampled during a given cycle are not returned. Horizon depths are averaged across samples. Note that horizons that were combined after lab QC may be > 10 cm deep.
## Not run:
importData() #imports using default odbc
# join only A horizon data for most FRSP
soil_FRSP_A <- joinSoilLabData(park = 'FRSP', from = 2010, to = 2013, layers = 'A')
# join all park data from all layers and all years
soil_df_all <- joinSoilLabData(layers = 'all')
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.