dm_event_climate_summary: Summarize event-based climate results

View source: R/events_phase_plots.R

dm_event_climate_summaryR Documentation

Summarize event-based climate results

Description

Summarizes a climate variable extracted by dm_event_climate() by phase, event type, month, or month-of-year.

Usage

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
)

Arguments

event_data

Output of dm_event_climate().

climate_var

Name of the climate-derived column to summarize.

group_var

Grouping variable. One of "Phase" or "event_type".

by

One of "none", "month", "month_of_year", or "year".

Year

Optional numeric year or vector of years for filtering.

DOY

Optional numeric vector of length 2 for filtering.

Value

A tibble of summary statistics.

Examples


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)



dendRoAnalyst documentation built on May 20, 2026, 5:07 p.m.