Description Usage Arguments Details Author(s) Examples
Returns a basic set of statistics that match the period of the data passed in (e.g., monthly returns will get monthly statistics, daily will be daily stats, and so on)
1 | table.Stats(R, ci = 0.95, digits = 4)
|
R |
an xts, vector, matrix, data frame, timeSeries or zoo object of asset returns |
ci |
confidence interval, defaults to 95% |
digits |
number of digits to round results to |
This was created as a way to display a set of related statistics together for comparison across a set of instruments or funds. Careful consideration to missing data or unequal time series should be given when intepreting the results.
Peter Carl
1 2 3 4 5 6 7 8 9 10 | data(edhec)
table.Stats(edhec[,1:3])
t(table.Stats(edhec))
result=t(table.Stats(edhec))
require("Hmisc")
textplot(format.df(result, na.blank=TRUE, numeric.dollar=FALSE, cdec=c(rep(1,2),rep(3,14))),
rmar = 0.8, cmar = 1.5, max.cex=.9, halign = "center", valign = "top",
row.valign="center", wrap.rownames=10, wrap.colnames=10, mar = c(0,0,3,0)+0.1)
title(main="Statistics for EDHEC Indexes")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.