This function makes aggregations of vegetation data on the levels of

  • plot and year

  • subplot and year (only for plot type 'core area')

  • plot, species and year (only for plot type 'core area')

calculate_vegetation(data_vegetation, data_herblayer)

Arguments

data_vegetation

dataframe on vegetation with variables ...

data_herblayer

dataframe on vegetation in the species level ('herb layer') with variables ...

Value

List of dataframes that are mentioned in the above description

Examples

if (FALSE) {
#change path before running
library(forrescalc)
data_vegetation <-
  load_data_vegetation("C:/MDB_BOSRES_selectieEls/FieldMapData_MDB_BOSRES_selectieEls.accdb")
data_herblayer <-
  load_data_herblayer("C:/MDB_BOSRES_selectieEls/FieldMapData_MDB_BOSRES_selectieEls.accdb")
calculate_vegetation(data_vegetation, data_herblayer)
}