boxPlot {fAssets} | R Documentation |
A collection and description of functions which
display several different kind of views on
multivariate data sets of assets.
The functions are:
| Displays standard box plots, |
assetsBoxPercentilePlot | Displays side-by-side box-percentile plots. |
assetsBoxPlot(x, col = "bisque", ...) assetsBoxPercentilePlot(x, col = "bisque", ...)
x |
any rectangular time series object which can be converted by the
function as.matrix() into a matrix object, e.g. like an
object of class timeSeries , data.frame , or mts .
|
col |
a character string, defining the color to fill the boxes. |
... |
optional arguments to be passed. |
Diethelm Wuertz for the Rmetrics port.
MultivariateDistribution
.
## LPP - LPP = as.timeSeries(data(LPP2005REC)) head(LPP) ## assetsBoxPlot - assetsBoxPlot(LPP) ## assetsBoxPercentilePlot - assetsBoxPercentilePlot(LPP)