Learn R Programming

gets (version 0.38)

as.lm: Convert to 'lm' object

Description

Convert 'arx'/'gets'/'isat' object to 'lm' object

Usage

as.lm(object)

Value

Object of class lm

Arguments

object

object of class arx, gets or isat

See Also

arx, gets, isat, lm

Examples

Run this code
##generate data, estimate model of class 'arx':
set.seed(123)
y <- rnorm(30)
arxmod <- arx(y, mc=TRUE, ar=1:3)
as.lm(arxmod)

##from 'gets' to 'lm':
getsmod <- getsm(arxmod, keep=1)
as.lm(getsmod)

##from 'isat' to 'lm':
isatmod <- isat(y)
as.lm(isatmod)

Run the code above in your browser using DataLab