gen_lts: Generate Latent Time Series Object Based on Model

Description Usage Arguments Details Value Author(s) Examples

View source: R/lts.R

Description

Create a lts object based on a supplied time series model.

Usage

1
2
gen_lts(n, model, start = 0, end = NULL, freq = 1, unit = NULL,
  name = NULL, process = NULL)

Arguments

n

An interger indicating the amount of observations generated in this function.

model

A ts.model or gmwm object containing one of the allowed models.

start

A numeric that provides the time of the first observation.

end

A numeric that provides the time of the last observation.

freq

A numeric that provides the rate of samples. Default value is 1.

unit

A string that contains the unit expression of the frequency. Default value is NULL.

name

A string that provides an identifier to the data. Default value is NULL.

process

A vector that contains model names of decomposed and combined processes.

Details

This function accepts either a ts.model object (e.g. AR1(phi = .3, sigma2 =1) + WN(sigma2 = 1)) or a gmwm object.

Value

A lts object with the following attributes:

start

The time of the first observation

end

The time of the last observation

freq

Numeric representation of frequency

unit

String representation of the unit

name

Name of the dataset

process

A vector that contains model names of decomposed and combined processes

Author(s)

JJB, Wenchao

Examples

1
2
3
4
5
# AR
set.seed(1336)
model = AR1(phi = .99, sigma2 = 1) + WN(sigma2 = 1)
test = gen_lts(1000, model)
plot(test)

SMAC-Group/gmwm documentation built on Sept. 11, 2021, 10:06 a.m.