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 / Beta < prev    next >
Encoding:
Text File  |  1997-04-23  |  554 b   |  22 lines

  1.     
  2.     _T_h_e _B_e_t_a _D_i_s_t_r_i_b_u_t_i_o_n
  3.     
  4.          dbeta(x, a, b)
  5.          pbeta(q, a, b)
  6.          qbeta(p, a, b)
  7.          rbeta(n, a, b)
  8.     
  9.     _V_a_l_u_e:
  10.     
  11.          These functions provide information about the Beta dis-
  12.          tribution with parameters a and b.  dbeta gives the
  13.          density, pbeta the distribution function, qbeta the
  14.          quantile function and rbeta generates random deviates.
  15.     
  16.          The Beta distribution has density
  17.     
  18.              Gamma(a+b)/(Gamma(a)Gamma(b))x^(a-1)(1-x)^(b-1)
  19.     
  20.          for a > 0, b > 0 and 0 < x < 1.
  21.     
  22.