Created
February 21, 2022 15:04
-
-
Save MJacobs1985/ea738e7a32500655fc6acee799ca1767 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rochef_ts <- ts(data = arc_month[, c("rochef")], | |
start = c(2005, 09), # start date | |
end = c(2017, 11), # end date | |
frequency = 12) | |
ts_heatmap(rochef_ts) | |
ts_cor(rochef_ts) | |
ts_lags(rochef_ts) | |
plot(ts_ma(rochef_ts)) | |
ts_decompose(rochef_ts, type="both") | |
ts_surface(rochef_ts) | |
ts_polar(rochef_ts) | |
plot(ts_diff(rochef_ts)) | |
tsdisplay(rochef_ts) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment