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 / mansrc / man281 / predict < prev    next >
Encoding:
Text File  |  1996-11-24  |  958 b   |  24 lines

  1. TITLE(predict @@  Regression Prediction)
  2. USAGE(
  3. predict(reglist, DOTS)
  4. )
  5. ARGUMENTS(
  6. ARG(reglist @@ a list produced by LANG(regress).)
  7. ARG(DOTS @@ either a series of vectors, all of the same length,
  8. separated by commas, or a matrix.
  9. If the former, the vectors contain the
  10. data for the explanatory variables for which we wish to make predictions.
  11. If a matrix, then the columns contain the data for the explanatory variables.)
  12. )
  13. DESCRIPTION(
  14. LANG(predict) calculates prediction intervals for regression.
  15. Returns a matrix, the rows of which correspond to separate predictions at
  16. different x-values (the number of rows equals the length of the vectors
  17. in LANG(DOTS), or the number of rows if LANG(DOTS) is a matrix),
  18. and the columns of which contain the value
  19. of the prediction, the upper and lower limits for a confidence
  20. interval for the mean of all responses taken at x,
  21. and the upper and lower limits of a prediction
  22. interval for an observation taken at x.
  23. )
  24.