Group-wise Time Series Summary
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. If missing, attempts to auto-detect the date or date-time column. |
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) # ---- NON-GROUPED EXAMPLES ---- # Monthly Data m4_monthly %>% filter(id == "M750") %>% tk_summary_diagnostics() # ---- GROUPED EXAMPLES ---- # Monthly Data m4_monthly %>% group_by(id) %>% tk_summary_diagnostics()
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.