plot-mst {fAssets} | R Documentation |
Assets Tree Plot
Description
Creates and displays a minimum spanning tree of assets.
Usage
assetsTreePlot(x, labels = TRUE, title = TRUE, box = TRUE,
method = "euclidian", seed = NULL, ...)
Arguments
x |
a multivariate |
labels |
a logical flag, if |
title |
a logical flag, should a default title be added? By default
|
box |
a logical flag, should a box be added around the plot? By default
|
method |
a character string, the method used to compute the distance
matrix, see function |
seed |
an integer value setting the seed in the computation of the sample ranks. |
... |
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[, 1:6]
head(LPP)
## assetsTreePlot(LPP) -
# Create Minimum Spanning Tree Graph: assetsTreePlot -
# par(mfrow = c(2, 2))
assetsTreePlot(LPP)
# new seeds ...
for (i in 1:3) assetsTreePlot(LPP)