summary.dfts | R Documentation |
General summary function to view data overview. Several plots and test statistics are returned to give a general view of the data. More details can be found with more specialized functions.
## S3 method for class 'dfts'
summary(object, changes = NULL, lag.max = 20, d.max = 2, demean = FALSE, ...)
object |
A dfts object or data which can be automatically converted to that
format. See |
changes |
Vector of change locations, if there are any. Default is NULL. |
lag.max |
Max lags to consider for ACF. Default is 20. |
d.max |
Max number of dimensions for QQ-plot. |
demean |
Boolean if data should be demeaned based on changes and create plots based on these residuals. |
... |
Data to pass into underlying functions like the KPSS, portmanteau, and stationary tests. In general it is recommended to not use this and instead apply the specialized functions directly. |
List with the elements:
summary_data: summary results for the data.
summary_plot: summary plot for the data.
base::summary()
# All parameters extremely low for speed
res <- summary(electricity[, 1:10], lag.max = 1, d.max=1, M=10)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.