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 / Lognormal < prev    next >
Encoding:
Text File  |  1997-04-23  |  988 b   |  33 lines

  1.     
  2.     _T_h_e _L_o_g _N_o_r_m_a_l _D_i_s_t_r_i_b_u_t_i_o_n
  3.     
  4.          dlnorm(x, meanlog=0, sdlog=1)
  5.          plnorm(q, meanlog=0, sdlog=1)
  6.          qlnorm(p, meanlog=0, sdlog=1)
  7.          rlnorm(n, meanlog=0, sdlog=1)
  8.     
  9.     _D_e_s_c_r_i_p_t_i_o_n:
  10.     
  11.          These functions provide information about the log nor-
  12.          mal distribution whose logarithm has mean equal to
  13.          meanlog and standard deviation equal to sdlog.  dlnorm
  14.          gives the density, plnorm gives the distribution func-
  15.          tion qlnorm gives the quantile function and rlnorm gen-
  16.          erates random deviates.
  17.     
  18.          If meanlog or sdlog are not specified they assume the
  19.          default values of 0 and 1 respectively.
  20.     
  21.          The log normal distribution has density
  22.     
  23.               f(x) = 1/(sqrt(2 pi) sigma x)
  24.                          e^-((log x - mu)^2 / (2 sigma^2))
  25.     
  26.          where mu and sigma are the mean and standard deviation
  27.          of the logarithm.
  28.     
  29.     _S_e_e _A_l_s_o:
  30.     
  31.          dnorm, etc.
  32.     
  33.