binningPlot {fAssets} | R Documentation |
Displays bivariate histogram plots of assets returns.
assetsHistPairsPlot(x, bins = 30, method = c("square", "hex"), ...)
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 .
|
bins |
an integer value, the number of bins used for the biariate histogram. |
method |
a character string denoting whic h type of binning should be
used, either "squared" or "hexagonal" .
|
... |
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.
## LPP2005REC - LPP = as.timeSeries(data(LPP2005REC)) ## assetsHistPairsPlot - assetsHistPairsPlot(LPP[, c("LMI", "ALT")]) assetsHistPairsPlot(LPP[, c("LMI", "ALT")], method = "hex")