its (version 0.1.1)

its-disp: Display Methods for Irregular Time-Series Objects

Description

Display methods for objects of class "its".

Arguments

Value

  • The methods are called for their side-effects.

Usage

plot(x,y,colvec=1:ncol(x),groupsize=m,type="l",ltyps="sequence", leg=FALSE,yrange=NA,format=NA,...) print(x,...)

Details

plot is the method for plotting irregular time-series objects. All series are displayed on a single set of axes, by default using different linetypes and colours. print is the method for printing irregular time-series objects. The format for the dates is determined at the time the 'its' object is created, using the format control its.format.

See Also

ts, POSIXct, its-file, its-lags its-join its-times its-subset its-fin its-disp its-info its-cumdif its-arith

Examples

Run this code
a <- matrix(c(seq(by=24*60*60,length=20),1:20,41:60),nrow=20,ncol=3)
b <- as.its(a)
plot(b)
print(b)
its.format("%d/%m/%Y")
b <- as.its(a)
print(b)

Run the code above in your browser using DataCamp Workspace