| as.ts.tbl_ts {tsibble} | R Documentation |
Coerce a tsibble to a time series
## S3 method for class 'tbl_ts' as.ts(x, value, frequency = NULL, fill = NA, ...)
x |
A |
value |
A measured variable of interest to be spread over columns, if multiple measures. |
frequency |
A smart frequency with the default |
fill |
A value to replace missing values. |
... |
Ignored for the function. |
A ts object.
# a monthly series x1 <- as_tsibble(AirPassengers) as.ts(x1) # equally spaced over trading days, not smart enough to guess frequency x2 <- as_tsibble(EuStockMarkets) head(as.ts(x2, frequency = 260))