Learn R Programming

s2dverification (version 2.10.3)

GenSeries: Generates An AR1 Time Series

Description

This function generates AR1 processes containing n data points, where alpha is the autocorrelation at lag 1, and the mean and standard deviation are specified by the mean and std arguments.

Usage

GenSeries(n, alpha, mean, std)

Arguments

n

Length of the timeseries to be generated.

alpha

Autocorrelation at lag 1.

mean

Mean of the data.

std

Standard deviation of the data.

Value

AR1 timeseries.

Examples

Run this code
# NOT RUN {
series <- GenSeries(1000, 0.35, 2, 1)
plot(series, type = 'l')

# }

Run the code above in your browser using DataLab