predict                package:stats                R Documentation

_M_o_d_e_l _P_r_e_d_i_c_t_i_o_n_s

_D_e_s_c_r_i_p_t_i_o_n:

     'predict' is a generic function for predictions from the results
     of various model fitting functions.  The function invokes
     particular _methods_ which depend on the 'class' of the first
     argument.

_U_s_a_g_e:

     predict (object, ...)

_A_r_g_u_m_e_n_t_s:

  object: a model object for which prediction is desired.

     ...: additional arguments affecting the predictions produced.

_D_e_t_a_i_l_s:

     Most prediction methods which similar to fitting linear models
     have an argument 'newdata' specifiying the first place to look for
     explanatory variables to be used for prediction. Some considerable
     attempts are made to match up the columns in 'newdata' to those
     used for fitting, for example that they are of comparable types
     and that any factors have the same level set in the same order (or
     can be transformed to be so).

     Time series prediction methods in package 'stats' have an argument
     'n.ahead' specifying how many time steps ahead to predict.

     Many methods have a logical argument 'se.fit' saying if standard
     errors are to returned.

_V_a_l_u_e:

     The form of the value returned by 'predict' depends on the class
     of its argument.  See the documentation of the particular methods
     for details of what is produced by that method.

_R_e_f_e_r_e_n_c_e_s:

     Chambers, J. M. and Hastie, T. J. (1992) _Statistical Models in
     S_. Wadsworth & Brooks/Cole.

_S_e_e _A_l_s_o:

     'predict.glm', 'predict.lm', 'predict.loess', 'predict.nls',
     'predict.poly', 'predict.princomp', 'predict.smooth.spline'.

     For time-series prediction, 'predict.ar', 'predict.Arima',
     'predict.arima0', 'predict.HoltWinters', 'predict.StructTS'.

_E_x_a_m_p_l_e_s:

     ## All the "predict" methods found
     ## NB most of the methods in the standard packages are hidden.
     for(fn in methods("predict"))
        try({
            f <- eval(substitute(getAnywhere(fn)$objs[[1]], list(fn = fn)))
            cat(fn, ":\n\t", deparse(args(f)), "\n")
            }, silent = TRUE)

