plot-binning {fAssets} | R Documentation |
Bivariate Histogram Plots of Assets
Description
Displays bivariate histogram plots of assets returns.
Usage
assetsHistPairsPlot(x, bins = 30, method = c("square", "hex"), ...)
Arguments
x |
any rectangular time series object which can be converted by the
function |
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 |
... |
optional arguments to be passed. |
Author(s)
Diethelm Wuertz for the Rmetrics port.
References
Wuertz, D., Chalabi, Y., Chen W., Ellis A. (2009); Portfolio Optimization with R/Rmetrics, Rmetrics eBook, Rmetrics Association and Finance Online, Zurich.
Examples
## LPP2005REC -
# Load Swiss Pension Fund Data:
LPP <- LPP2005REC
head(LPP)
## assetsHistPairsPlot -
# Create a bivariate Binning Plot: assetsHistPairsPlot -
assetsHistPairsPlot(LPP[, c("LMI", "ALT")])
## assetsHistPairsPlot -
# Now with hexagonal Bins:
assetsHistPairsPlot(LPP[, c("LMI", "ALT")], method = "hex")
grid(col="red")
[Package fAssets version 4023.85 Index]