boxPlot {fAssets} | R Documentation |
Displays standard box and box-percentile plots of assets.
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.
Wuertz, D., Chalabi, Y., Chen W., Ellis A. (2009); Portfolio Optimization with R/Rmetrics, Rmetrics eBook, Rmetrics Association and Finance Online, Zurich.
## LPP - LPP = as.timeSeries(data(LPP2005REC)) head(LPP) ## assetsBoxPlot - assetsBoxPlot(LPP) ## assetsBoxPercentilePlot - assetsBoxPercentilePlot(LPP)