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)

_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

    rate: gamma rate parameter

   scale: gamma scale parameter

      df: degrees of freedom

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

     This function computes the deviates of a standard normalization
     distribution 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)'.

     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.

_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(0, df=3)

