Description Usage Arguments Details Value Examples
A function for predictions from the results of various model fitting functions.
1 |
object |
a model object for which prediction is desired. |
... |
additional arguments affecting the predictions produced. |
A somewhat improved version of predict
for models
fitted with objects of class StatModel-class
.
Should return a vector of the same type as the response variable specified
for fitting object
.
1 2 3 | df <- data.frame(x = runif(10), y = rnorm(10))
mf <- dpp(linearModel, y ~ x, data = df)
Predict(fit(linearModel, mf))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.