home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / UNIX / Educational / R-0.49-MI / R-0.49-I / help / base / Chisquare < prev    next >
Encoding:
Text File  |  1997-04-23  |  623 b   |  24 lines

  1.     
  2.     _T_h_e _C_h_i-_S_q_u_a_r_e _D_i_s_t_r_i_b_u_t_i_o_n
  3.     
  4.          dchisq(x, df)
  5.          pchisq(q, df)
  6.          qchisq(p, df)
  7.          rchisq(n, df)
  8.     
  9.     _V_a_l_u_e:
  10.     
  11.          These functions provide information about the chi-
  12.          square distribution with df degrees of freedom.  dchisq
  13.          gives the density, pchisq gives the distribution func-
  14.          tion qchisq gives the quantile function and rchisq gen-
  15.          erates random deviates.
  16.     
  17.          The chi-square distribution with df = n degrees of
  18.          freedom has density
  19.     
  20.            f(x) = 1 / (2^(n/2) Gamma(n/2))  x^(n/2-1) e^(-x/2)
  21.     
  22.          for x > 0.
  23.     
  24.