resplot               package:reldist               R Documentation

_R_e_l_a_t_i_v_e _d_i_s_t_r_i_b_u_t_i_o_n _p_l_o_t _t_o _a _S_t_a_n_d_a_r_d _N_o_r_m_a_l

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

     'resplot' produces a relative distribution of the values to a
     standard  normal.

     Graphical parameters may be given as arguments to 'resplot'.

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

     resplot(x,
            standardize=TRUE,
            xlab="Gaussian Cumulative Proportion",
            ...)

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

       x: The first sample for 'resplot'.

standardize: Should the sample be converted to standard units first?

    xlab: plot labels.

     ...: graphical parameters.

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

     A list with components summarizing the relative distribution. See
     'reldist' fro the details.

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

     'reldist'.

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

     y <- rnorm(2000)
     resplot(y)
     data(precipitation)
     resplot(precipitation, ylab = "Precipitation [in/yr] for 70 US cities")

