update.gvlma {gvlma} | R Documentation |
Update a Gvlma Object
Description
Update a gvlma object with changes to the linear model, the level of significance for global tests, or the time sequence used for the heteroscedasticity directional test.
Usage
## S3 method for class 'gvlma'
update(object, formula, ...)
Arguments
object |
A gvlma object resulting from a call to |
formula |
(optional) A new formula describing the underlying linear model. |
... |
Additional arguments to be changed from the original call
to gvlma. These may include arguments to the |
Details
All arguments other than alphalevel
and timeseq
(and
warn
) are passed
on to a call to update
for the underlying linear model.
If alphalevel
is
specified, then subsequent displays of the global and directional test
statistic decisions will be based on the new level of significance. If
timeseq
is specified, then the heteroscdasticity direction test,
S^2_4
, will be updated to use the new time sequence.
Value
A new gvlma object is returned.
Author(s)
Slate, EH slate@stat.fsu.edu and Pena, EA pena@stat.sc.edu.
References
Pena, EA and Slate, EH (2006). “Global validation of linear model assumptions,” J.\ Amer.\ Statist.\ Assoc., 101(473):341-354.
See Also
Examples
data(CarMileageData)
CarModelAssess <- gvlma(NumGallons ~ MilesLastFill + NumDaysBetw,
data = CarMileageData)
CarModelAssess
summary(CarModelAssess)
CarModelNew <- update(CarModelAssess, alphalevel = 0.01)
CarModelNew
CarModelNew <- update(CarModelAssess, subset = -(1:10))
CarModelNew
summary(CarModelNew)