QuantileQuantilePlots        package:fBasics        R Documentation

_Q_u_a_n_t_i_l_e-_Q_u_a_n_t_i_l_e _P_l_o_t_s

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

     Returns quantile-quantile plots for the normal, the normal inverse
     Gaussian, and the generalized  hyperbolic Student-t distribution. 

     List of Functions:

       'qqnormPlot'  Returns a tailored Normal quantile-quantile plot,
       'qqnigPlot'   Returns a tailored NIG quantile-quantile plot,
       'qqghtPlot'   Returns a tailored GHT quantile-quantile plot.

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

          
     qqnormPlot(x, labels = TRUE, col = "steelblue", pch = 19,
         title = TRUE, mtext = TRUE, grid = FALSE, rug = TRUE, 
         scale = TRUE, ...) 
     qqnigPlot(x, labels = TRUE, col = "steelblue", pch = 19,
         title = TRUE, mtext = TRUE, grid = FALSE, rug = TRUE, 
         scale = TRUE, ...) 
     qqghtPlot(x, labels = TRUE, col = "steelblue", pch = 19,
         title = TRUE, mtext = TRUE, grid = FALSE, rug = TRUE, 
         scale = TRUE, ...) 

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

       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. 

  labels: a logical flag, should the plot be returned with default
          labels and decorated in an automated way? By default 'TRUE'. 

     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))'.  

     pch: an integer value, by default 19. Which plot character should
          be  used in the plot? 

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

   mtext: a logical flag, by default TRUE. Should a marginal text be
          printed on the third site of the graph? 

    grid: a logical flag, should a grid be added to the plot?  By
          default 'TRUE'. To plot a horizontal lines only use
          'grid="h"' and for vertical lines use 'grid="h"',
          respectively. 

     rug: a logical flag, by default TRUE. Should a rug representation 
          of the data added to the plot? 

   scale: a logical flag, by default TRUE. Should the time series be 
          scaled for the investigation? 

     ...: optional arguments to be passed. 

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

     displays a time series plot.

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

     Diethelm Wuertz for the Rmetrics R-port.

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

     ## qqPlot - 

