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 / Normal < prev    next >
Encoding:
Text File  |  1997-04-23  |  1.1 KB  |  40 lines

  1.     
  2.     _T_h_e _N_o_r_m_a_l _D_i_s_t_r_i_b_u_t_i_o_n
  3.     
  4.          dnorm(x, mean=0, sd=1)
  5.          pnorm(q, mean=0, sd=1)
  6.          qnorm(p, mean=0, sd=1)
  7.          rnorm(n, mean=0, sd=1)
  8.     
  9.     _A_r_g_u_m_e_n_t_s:
  10.     
  11.              x,q : vector of quantiles.
  12.     
  13.                p : vector of probabilites.
  14.     
  15.                n : number of observations.
  16.     
  17.             mean : vector of means.
  18.     
  19.               sd : vector of standard deviations.
  20.     
  21.     _D_e_s_c_r_i_p_t_i_o_n:
  22.     
  23.          These functions provide information about the normal
  24.          distribution with mean equal to mean and standard devi-
  25.          ation equal to sd.  dnorm gives the density, pnorm
  26.          gives the distribution function qnorm gives the quan-
  27.          tile function and rnorm generates random deviates.
  28.     
  29.          If mean or sd are not specified they assume the default
  30.          values of 0 and 1 respectively.
  31.     
  32.          The normal distribution has density
  33.     
  34.                  f(x) = 1/(sqrt(2 pi) sigma)
  35.                             e^-((x - mu )^2/(2 sigma^2))
  36.     
  37.          where mu is the mean of the distribution and sigma the
  38.          standard deviation.
  39.     
  40.