Create a lts
object based on a supplied matrix or data frame. The latent time series is obtained by the sum of underlying time series.
lts(
data,
start = 0,
end = NULL,
freq = 1,
unit_ts = NULL,
unit_time = NULL,
name_ts = NULL,
name_time = NULL,
process = NULL
)
A multiple-column matrix
or data.frame
. It must contain at least 3 columns of which the last represents the latent time series obtained through the sum of the previous columns.
A numeric
that provides the time of the first observation.
A numeric
that provides the time of the last observation.
A numeric
that provides the rate/frequency at which the time series is sampled. The default value is 1.
A string
that contains the unit of measure of the time series. The default value is NULL
.
A string
that contains the unit of measure of the time. The default value is NULL
.
A string
that provides an identifier for the time series data. Default value is NULL
.
A string
that provides an identifier for the time. Default value is NULL
.
A vector
that contains model names of each column in the data
object where the last name is the sum of the previous names.
A lts
object