table.Drawdowns {PerformanceAnalytics} | R Documentation |
Creates table showing statistics for the worst drawdowns.
table.Drawdowns(R, top= 5, digits = 4)
R |
an xts, vector, matrix, data frame, timeSeries or zoo object of asset returns |
top |
the number of drawdowns to include |
digits |
number of digits to round results to |
A data.frame organized as a table of drawdown statistics.
Peter Carl
Bacon, C. Practical Portfolio Performance Measurement and Attribution. Wiley. 2004. p. 88
DownsideDeviation
maxDrawdown
findDrawdowns
sortDrawdowns
chart.Drawdown
table.DownsideRisk
data(edhec) table.Drawdowns(edhec[,1,drop=FALSE]) table.Drawdowns(edhec[,12,drop=FALSE]) data(managers) table.Drawdowns(managers[,8,drop=FALSE])