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 / qqnorm < prev    next >
Encoding:
Text File  |  1997-04-23  |  716 b   |  29 lines

  1.     
  2.     _N_o_r_m_a_l _Q_u_a_n_t_i_l_e-_Q_u_a_n_t_i_l_e _P_l_o_t_s
  3.     
  4.          qqnorm(y, ...)
  5.          qqline(y, ...)
  6.          qqplot(x,y, plot.it = T, ...)
  7.     
  8.     _D_e_s_c_r_i_p_t_i_o_n:
  9.     
  10.          qqnorm produces a normal QQ plot of the values in y.
  11.          qqline adds a line to a normal quantile-quantile plot
  12.          which passes through the quartiles.
  13.     
  14.          Graphical parameters may be given as arguments to
  15.          qqnorm, qqnorm and qqline.
  16.     
  17.     _S_e_e _A_l_s_o:
  18.     
  19.          ppoints.
  20.     
  21.     _E_x_a_m_p_l_e_s:
  22.     
  23.          y <- rt(200, df=5)
  24.          qqnorm(y); qqline(y, col=2)
  25.          qqplot(y, rt(300, df=5))
  26.          data(precip)
  27.          qqnorm(precip, ylab = "Precipitation [in/yr] for 70 US cities")
  28.     
  29.