| tk_summary_diagnostics {timetk} | R Documentation |
tk_summary_diagnostics() returns the time series summary from
one or more timeseries groups in a tibble.
tk_summary_diagnostics(.data, .date_var)
.data |
A |
.date_var |
A column containing either date or date-time values |
Applies tk_get_timeseries_summary() group-wise returning the summary of one or more
time series groups.
Respects dplyr groups
Returns the time series summary from a time-based feature.
A tibble or data.frame with timeseries summary features
library(dplyr)
library(timetk)
# ---- GROUPED EXAMPLES ----
# Hourly Data
m4_hourly %>%
group_by(id) %>%
tk_summary_diagnostics(date)