BoxPlot               package:fBasics               R Documentation

_T_i_m_e _S_e_r_i_e_s _B_o_x _P_l_o_t_s

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

     Returns a box or a box percentile plot. 

     List of Functions:

       'boxPlot'            Returns a side-by-side standard box plot,
       'boxPercentilePlot'  Returns a side-by-side box-percentile plot.

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

      
     boxPlot(x, col = "steelblue", title = TRUE, ...)
     boxPercentilePlot(x, col = "steelblue", title = TRUE, ...) 

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

     col: the color for the series. In the univariate case use just a 
          color name like the default, 'col="steelblue"', in the
          multivariate case we recommend to select the colors from a 
          color palette, e.g. 'col=heat.colors(ncol(x))'.  

   title: a logical flag, by default TRUE. Should a default title added
           to the plot? 

       x: an object of class '"timeSeries"' or any other object which
          can be transformed by the function 'as.timeSeries' into an
          object of class 'timeSeries'. The latter case, other then
          'timeSeries' objects, is more or less untested. 

     ...: optional arguments to be passed. 

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

     displays a time series plot.

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

     ## boxplot -

