xreg.cenTS: Return the 'xreg' part of the 'cenTS' object

Description Usage Arguments Value See Also Examples

View source: R/cenTS.R

Description

Return the xreg part of the cenTS object

Usage

1
2
## S3 method for class 'cenTS'
xreg(object)

Arguments

object

a cenTS object.

Value

the list in xreg.

See Also

cenTS.

Examples

1
2
3
4
5
6
7
8
strDates <- c("2000-01-01", "2000-01-02", "2000-01-03", "2000-01-04", "2000-01-05")
ts <- cenTS(value=c(1,-2,1,NA,0),
            order.by=as.Date(strDates,"%Y-%m-%d"),
            lcl=c(-3,-2,-1,-1,0),
            ucl=c(3,2,1,1,1),
            x=c(1,1,1,1,1),
            y=c(2,2,2,2,2))
 xreg(ts)

carx documentation built on May 2, 2019, 3:43 a.m.

Related to xreg.cenTS in carx...