TailoredReturnPlots         package:fBasics         R Documentation

_T_a_i_l_o_r_e_d _R_e_t_u_r_n _P_l_o_t_s

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

     A collection and description of functions which allow to create
     easily financial return plots. 

     The tailored plot functions are:

       'seriesPlot'    Returns a tailored time series plot,
       'histPlot'      Returns a tailored histogram plot,
       'densityPlot'   Returns a tailored kernel density estimate plot,
       'quantilePlot'  Returns a tailored quantile-quantile plot.

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

      
     seriesPlot(x, col = "steelblue", main = x@units, ...) 
     histPlot(x, col = "steelblue", main = x@units, add.fit = TRUE, ...) 
     densityPlot(x, col = "steelblue", main = x@units, add.fit = TRUE, ...)
     quantilePlot(x, col = "steelblue", main = x@units, labels = TRUE, ...) 

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

 add.fit: [*Plot] - 
           a logical, should a fit added to the Plot? 

col, main: [*Plot] - 
           plot parameters, color and main title. 

  labels: a logical, should labels be added to the plot? 

       x: an object of class '"timeSeries"'. 

     ...: optional arguments to be passed. 

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

     Beside the plot, no other values are returned.

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

     Diethelm Wuertz for the Rmetrics R-port.

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

     ## SOURCE("fBasics.1B-TailoredReturnPlots")

