Description Usage Arguments Value Examples
Extract time series properties, such as the number of observations
(obs
), the time differences between observations (obs
), the number
of observations per year (freq
), and the start time stamp (start
)
and the end time stamp (end
) of the series.
1 | ts_summary(x, spark = FALSE)
|
x |
ts-boxable time series, an object of class |
spark |
logical should an additional column with a spark-line added to the data frame (experimental, ASCII only on Windows.) |
ts_summary
returns a data.frame
. Individual column can be accessed
through the $
notation (see examples).
1 2 3 4 5 6 | ts_summary(ts_c(mdeaths, austres))
ts_summary(ts_c(mdeaths, austres), spark = TRUE)
# Extracting specific properties
ts_summary(AirPassengers)$start
ts_summary(AirPassengers)$freq
ts_summary(AirPassengers)$obs
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.