its-disp {its} | R Documentation |
Display methods for objects of class "its"
.
plot
is the method for plotting irregular time-series objects.
All series are displayed on a single set of axes, by default using different
colours, linetypes, and widths. If the vectors defining these attributes are
short, they are cycled.
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.
The methods are called for their side-effects.
plot(x,y,colvec=1:ncol(x),type="l",ltypvec=1,lwdvec=1, leg=FALSE,yrange,format,at,interp=c("linear","none"),...) print(x,...)
"its"
par
.par
.locator
for position.format.POSIXct
, for the axis datesaxis.POSIXct
plot
passed to plot
.;
for print
passed to print.matrix
Giles Heywood
ts
,
POSIXct
,
its-file
,
its-lags
its-join
its-times
its-subset
its-fin
its-disp
its-info
its-cumdif
its-arith
a <- matrix(c(seq(by=24*60*60,length=20),1:20,41:60),nrow=20,ncol=3) b <- as.its(a) plot(b,colvec=c(1,7),lwdvec=1:2,ltypvec=1:2) print(b) its.format("%d/%m/%Y") b <- as.its(a) print(b)