Skip to contents

A data frame with 648 rows representing enhanced vegetation index, rainfall and temperature in three stands of Fagus sylvatica in Spain, Germany, and Sweden.

Usage

data(fagus_dynamics)

Format

data frame with 5 columns and 648 rows.

Details

Site coordinates for this dataset are in fagus_coordinates.

Examples

data("fagus_dynamics")

#to time series list
fagus <- tsl_initialize(
  x = fagus_dynamics,
  name_column = "name",
  time_column = "time"
)

#time series plot
if(interactive()){

 tsl_plot(
  tsl = fagus
  )

}