Learn R Programming

carx (version 0.7.1)

print.cenTS: Print a cenTS object

Description

Print a cenTS object

Usage

# S3 method for cenTS
print(x, ...)

Arguments

x

a cenTS object.

...

not used.

Value

none.

Examples

Run this code
# NOT RUN {
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))
 print(ts)

# }

Run the code above in your browser using DataLab