plot.ffm | R Documentation |
Generic plot
method for object of class ffm
.
Plots chosen characteristic(s) for one or more assets.
## S3 method for class 'ffm'
plot(
x,
which = NULL,
f.sub = 1:2,
a.sub = 1:6,
plot.single = FALSE,
asset.name,
asset.variable,
colorset = c("royalblue", "dimgray", "olivedrab", "firebrick", "goldenrod",
"mediumorchid", "deepskyblue", "chocolate", "darkslategray"),
legend.loc = "topleft",
las = 1,
lwd = 2,
maxlag = 15,
...
)
x |
an object of class |
which |
a number to indicate the type of plot. If multiple plots are
required, specify a subset from 1:12 for group plots and 1:13 for individual
plots. If |
f.sub |
numeric/character vector; subset of indexes/names of factors to include for group plots. Default is 1:2. |
a.sub |
numeric/character vector; subset of indexes/names of assets to include for group plots. At least 2 assets must be selected. Default is 1:6. |
plot.single |
logical; If |
asset.name |
name of the individual asset to be plotted. Is necessary
if |
asset.variable |
the name of asset variable. |
colorset |
color palette to use for all the plots. The 1st element will be used for individual time series plots or the 1st object plotted, the 2nd element for the 2nd object in the plot and so on. |
legend.loc |
places a legend into one of nine locations on the chart:
"bottomright", "bottom", "bottomleft", "left", "topleft", "top", "topright",
"right", or "center". Default is "bottomright". Use |
las |
one of |
lwd |
set the line width, same as in |
maxlag |
optional number of lags to be calculated for ACF. Default is 15. |
... |
further arguments to be passed to other plotting functions. |
The function can be used for group plots and individual plots. User can
select the type of plot either from the menu prompt (default) or directly
via argument which
.
In case multiple plots are needed, the menu is repeated after each plot
(enter 0 to exit). User can also input a numeric vector of plot options via
which
.
Group plots are the default. The selected assets in a.sub
and
selected factors in f.sub
are plotted depending on the
characteristic chosen. The default is to show the first 2 factors and first
6 assets.
Setting plot.single=TRUE
enables individual plots. If there is more
than one asset fit by x
, asset.name
should be specified.
In case the ffm
object x
contains only a single asset fit,
plot.ffm can infer asset.name
without user input.
Eric Zivot, Sangeetha Srinivasan and Yi-An Chen
fitFfm
, residuals.ffm
,
fitted.ffm
, fmCov.ffm
and
summary.ffm
for time series factor model fitting and related
S3 methods. Refer to fmSdDecomp
, fmEsDecomp
,
fmVaRDecomp
for factor model risk measures.
Here is a list of plotting functions used. (I=individual, G=Group)
I(1,5,6,7), G(3,4,12) - chart.TimeSeries
,
I(2,3,4,19), G(12) - plot.default
,
I(3,4) - panel.smooth
,
I(8,9,10) - chart.ACFplus
,
I(11,12) - plot.density
,
I(13) - chart.Histogram
,
I(14) - chart.QQPlot
,
I(15,16,17) - plot.efp
(requires strucchange package),
I(18) - plot.zoo
,
G(1) - chart.Boxplot
,
G(2,5,9,10,11) - barchart
,
G(6) - chart.Correlation
and
G(7,8) - corrplot.mixed
(requires corrplot package).
## Not run:
# load data
data(stocksCRSP)
data(factorsSPGMI)
stocks_factors <- selectCRSPandSPGMI(stocks = stocksCRSP, factors = factorsSPGMI,
dateSet = c("2006-01-31", "2010-12-31"),
stockItems = c("Date", "TickerLast",
"CapGroup", "Sector",
"Return", "Ret13WkBill",
"mktIndexCRSP"),
factorItems = c("BP", "LogMktCap", "SEV"),
capChoice = "SmallCap",
Nstocks = 20)
# fit a fundamental factor model with style variables BP and LogMktCap
fit.style <- fitFfm(data = stocks_factors,
asset.var = "TickerLast",
ret.var = "Return",
date.var = "Date",
exposure.vars = c("BP", "LogMktCap")
)
# For group plots (default), one can select plot option from prompt menu.
# The menu is repeated to produce multiple plots based on the same fit
# plot(fit.style) # Not run, but user should try it out
# plot all factor exposures from the last time period for 1st 10 assets
plot(fit.style, which = 2, f.sub = 1:2, a.sub = 1:10)
# plot factor model residuals scatterplot matrix, with histograms, density
# overlays, correlations and significance stars
plot(fit.style, which = 6)
# For individual plots: define `plot.single=TRUE` and specify `asset.name`.
# This will display a histogram of residuals from the asset's factor model fit
plot(fit.style, plot.single = TRUE, asset.name = "ALCO", which = 12)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.