actuals | R Documentation |
This is a simple method that returns the values of the response variable of the model
actuals(object, all = TRUE, ...)
## Default S3 method:
actuals(object, all = TRUE, ...)
## S3 method for class 'lm'
actuals(object, all = TRUE, ...)
## S3 method for class 'alm'
actuals(object, all = TRUE, ...)
## S3 method for class 'predict.greybox'
actuals(object, all = TRUE, ...)
object |
Model estimated using one of the functions of smooth package. |
all |
If |
... |
Other parameters to pass to the method. Currently nothing is supported here. |
The vector of the response variable.
Ivan Svetunkov, ivan@svetunkov.com
xreg <- cbind(rnorm(100,10,3),rnorm(100,50,5))
xreg <- cbind(100+0.5*xreg[,1]-0.75*xreg[,2]+rnorm(100,0,3),xreg,rnorm(100,300,10))
colnames(xreg) <- c("y","x1","x2","Noise")
ourModel <- stepwise(xreg)
actuals(ourModel)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.