table.Drawdowns     package:PerformanceAnalytics     R Documentation

_W_o_r_s_t _D_r_a_w_d_o_w_n_s _S_u_m_m_a_r_y: _S_t_a_t_i_s_t_i_c_s _a_n_d _S_t_y_l_i_z_e_d _F_a_c_t_s

_D_e_s_c_r_i_p_t_i_o_n:

     Creates table showing statistics for the worst drawdowns.

_U_s_a_g_e:

     table.Drawdowns(R, top= 5, digits = 4)

_A_r_g_u_m_e_n_t_s:

       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 

_V_a_l_u_e:

     A data.frame organized as a table of drawdown statistics.

_A_u_t_h_o_r(_s):

     Peter Carl

_R_e_f_e_r_e_n_c_e_s:

     Bacon, C. _Practical Portfolio Performance Measurement and
     Attribution_. Wiley. 2004. p. 88 

_S_e_e _A_l_s_o:

     'DownsideDeviation'  
      'maxDrawdown'   
      'findDrawdowns' 
      'sortDrawdowns' 
      'chart.Drawdown' 
      'table.DownsideRisk'

_E_x_a_m_p_l_e_s:

     data(edhec)
     table.Drawdowns(edhec[,1,drop=FALSE])
     table.Drawdowns(edhec[,12,drop=FALSE])
     data(managers)
     table.Drawdowns(managers[,8,drop=FALSE])

