Learn R Programming

greybox (version 2.0.2)

actuals: Function extracts the actual values from the function

Description

This is a simple method that returns the values of the response variable of the model

Usage

actuals(object, all = TRUE, ...)

# S3 method for default actuals(object, all = TRUE, ...)

# S3 method for lm actuals(object, all = TRUE, ...)

# S3 method for alm actuals(object, all = TRUE, ...)

# S3 method for predict.greybox actuals(object, all = TRUE, ...)

Value

The vector of the response variable.

Arguments

object

Model estimated using one of the functions of smooth package.

all

If FALSE, then in the case of the occurrence model, only demand sizes will be returned.

...

Other parameters to pass to the method. Currently nothing is supported here.

Author

Ivan Svetunkov, ivan@svetunkov.ru

Examples

Run this code

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)

Run the code above in your browser using DataLab