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

  1.     
  2.     _T_h_e _L_o_g_i_s_t_i_c _D_i_s_t_r_i_b_u_t_i_o_n
  3.     
  4.          dlogis(x, location, scale=1)
  5.          plogis(q, location, scale=1)
  6.          qlogis(p, location, scale=1)
  7.          rlogis(n, location, scale=1)
  8.     
  9.     _D_e_s_c_r_i_p_t_i_o_n:
  10.     
  11.          These functions provide information about the logistic
  12.          distribution with parameters location and scale.
  13.          dlogis gives the density, plogis gives the distribution
  14.          function qlogis gives the quantile function and rlogis
  15.          generates random deviates.
  16.     
  17.          The Logistic distribution with location a and scale b
  18.          has density
  19.     
  20.              f(x) = 1/b exp((x-a)/b) (1 + exp((x-a)/b))^-2.
  21.     
  22.