boxPlot {fAssets}R Documentation

Assets Box Plots

Description

A collection and description of functions which display several different kind of views on multivariate data sets of assets.

The functions are:

assetsBoxPlot

Displays standard box plots,
assetsBoxPercentilePlot Displays side-by-side box-percentile plots.

Usage

assetsBoxPlot(x, col = "bisque", ...)
assetsBoxPercentilePlot(x, col = "bisque", ...) 

Arguments

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.

Author(s)

Diethelm Wuertz for the Rmetrics port.

See Also

MultivariateDistribution.

Examples

## LPP -
   LPP = as.timeSeries(data(LPP2005REC))
   head(LPP)
   
## assetsBoxPlot - 
   assetsBoxPlot(LPP)
       
## assetsBoxPercentilePlot - 
   assetsBoxPercentilePlot(LPP)   

[Package fAssets version 280.74 Index]