View source: R/events_phase_plots.R
| dm_event_climate_summary | R Documentation |
Summarizes a climate variable extracted by dm_event_climate() by
phase, event type, month, or month-of-year.
dm_event_climate_summary(
event_data,
climate_var,
group_var = c("Phase", "event_type"),
by = c("none", "month", "month_of_year", "year"),
Year = NULL,
DOY = NULL
)
event_data |
Output of |
climate_var |
Name of the climate-derived column to summarize. |
group_var |
Grouping variable. One of |
by |
One of |
Year |
Optional numeric year or vector of years for filtering. |
DOY |
Optional numeric vector of length 2 for filtering. |
A tibble of summary statistics.
data(gf_nepa17)
data(ktm_clim_hourly)
zg <- phase.zg(df = gf_nepa17[1:800, ], TreeNum = 1)
evt_zg <- dm_event_climate(
zg,
ktm_clim_hourly,
event = "phase_start",
windows = c(0, 3, 6, 12, 24),
mean_vars = c("temp", "VPD", "RH"),
max_vars = c("VPD"),
sum_vars = c("prec")
)
smry <- dm_event_climate_summary(
evt_zg,
climate_var = "VPD_mean_prev_6h",
group_var = "Phase",
by = "month_of_year"
)
head(smry)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.