zscore                 package:limma                 R Documentation

_Z-_s_c_o_r_e _E_q_u_i_v_a_l_e_n_t_s

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

     Compute z-score equivalents of for gamma or t-distribution random
     deviates.

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

     zscoreGamma(q, shape, rate = 1, scale = 1/rate) 
     zscoreT(x, df)
     tZscore(x, df)

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

    q, x: numeric matrix for vector giving deviates of a random
          variaable

   shape: gamma shape parameter (>0)

    rate: gamma rate parameter (>0)

   scale: gamma scale parameter (>0)

      df: degrees of freedom (>0 for 'zscoreT' or >=1 for 'tZscore')

_D_e_t_a_i_l_s:

     These functions compute the standard normal deviates which have
     the same quantiles as the given values in the specified
     distribution. For example, if 'z <- zscoreT(x,df=df)' then
     'pnorm(z)' equals 'pt(x,df=df)'. 'tZscore' is the inverse of
     'zscoreT'.

     Care is taken to do the computations accurately in both tails of
     the distributions.

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

     Numeric vector giving equivalent deviates from a standard normal
     distribution ('zscoreGamma' and 'zscoreT') or deviates from a
     t-distribution ('tZscore').

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

     Gordon Smyth

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

     'qnorm', 'pgamma', 'pt'

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

     zscoreGamma(1, shape=1, scale=1)
     zscoreT(2, df=3)
     tZscore(2, df=3)

