as.ts.tbl_ts: Coerce a tsibble to a time series

View source: R/tsibble2ts.R

as.ts.tbl_tsR Documentation

Coerce a tsibble to a time series

Description

\lifecycle

stable

Usage

## S3 method for class 'tbl_ts'
as.ts(x, value, frequency = NULL, fill = NA_real_, ...)

Arguments

x

A tbl_ts object.

value

A measured variable of interest to be spread over columns, if multiple measures.

frequency

A smart frequency with the default NULL. If set, the preferred frequency is passed to ts().

fill

A value to replace missing values.

...

Ignored for the function.

Value

A ts object.

Examples

# a monthly series
x1 <- as_tsibble(AirPassengers)
as.ts(x1)

earowang/tsibble documentation built on Feb. 6, 2024, 11:27 a.m.