View source: R/ts_daily_decomp.R
ts_daily_decomp | R Documentation |
This function transforms daily crime count data and plots the resultant components of a time series which has been decomposed into seasonal, trend, and irregular components using Loess smoothing. Holt Winters exponential smoothing is also performed for inproved trend resolution since data is in a daily format.
ts_daily_decomp(data, start)
data |
Data frame of crime or RMS data. See provided Chicago Data Portal example for reference |
start |
Start date for the time series being analyzed. The format is as follows: c('year', 'month', 'day'). See example below for reference. |
Returns an object of class "stl" with the following components:
time.series: a multiple time series with columns seasonal, trend and remainder.
weights: the final robust weights (all one if fitting is not done robustly).
call: the matched call.
win: integer (length 3 vector) with the spans used for the "s", "t", and "l" smoothers.
deg: integer (length 3) vector with the polynomial degrees for these smoothers.
jump: integer (length 3) vector with the 'jumps' (skips) used for these smoothers.
inner: number of inner iterations
Jamie Spaulding, Keith Morris
#Using provided dataset from Chicago Data Portal:
data(crimes)
test <- ts_daily_decomp(data = crimes, start = c(2017, 1, 1))
plot(test)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.