| plot {fSeries} | R Documentation |
Functions to plot timeSeries objects.
## S3 method for class 'timeSeries': plot(x, ...) ## S3 method for class 'timeSeries': lines(x, ...) ## S3 method for class 'timeSeries': points(x, ...)
x |
an object of class timeSeries.
|
... |
arguments passed to other methods. |
a plot or plot elements of an object of class timeSeries.
Diethelm Wuertz for the Rmetrics R-port.
## data -
myFinCenter <<- "GMT"
EDHEC = as.timeSeries(data(edhec.tS))[1:12, 1:4]
colnames(EDHEC) <- abbreviate(colnames(EDHEC), 6)
## plot -
plot(EDHEC[,1], type = "o", col = "steelblue",
main = "EDHEC", xlab = "1997", ylab = "Return")