View source: R/ts_month_decomp.R
ts_month_decomp | R Documentation |
This function transforms traditional crime data and plots the resultant components of a time series which has been decomposed into seasonal, trend and irregular components using Loess smoothing.
ts_month_decomp(data, start)
data |
Data frame of crime or RMS data. See provided Chicago Data Portal example for reference |
start |
The year in which the time series data starts. The time series is assumed to be composed of solely monthly count data |
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_month_decomp(crimes, 2017)
plot(test)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.