modelObjFit-class {modelObj} | R Documentation |
Class modelObjFit
Description
A class for storing regression analysis results.
Usage
## S4 method for signature 'modelObjFit'
coef(object, ...)
## S4 method for signature 'modelObjFit'
plot(x, y, ...)
## S4 method for signature 'modelObjFit'
print(x)
## S4 method for signature 'modelObjFit'
residuals(object, ...)
## S4 method for signature 'modelObjFit'
show(object)
## S4 method for signature 'modelObjFit'
summary(object, ...)
Arguments
object |
An object of class modelObjFit |
... |
passed to underlying method defined for regression value object. |
x |
An object of class modelObjFit |
y |
ignored |
Methods (by generic)
-
coef
: Extract Model Coefficients -
plot
: X-Y plotting -
print
: Print regression results -
residuals
: Extract residuals -
show
: Show regression results -
summary
: Show summary results
Slots
fitObj
Object returned by the regression analysis
modelObj
Object of class
modelObj
.
Methods
- fitObject
: Extracts regression step.
- model
: Retrieve model.
- solver
: Retrieve regression method name.
- solverArgs
: Retrieve arguments to be sent to regression method.
- solverArgs(object)<-
: Set arguments to be sent to regression method.
- predictor
: Retrieve prediction method name.
- predictorArgs
: Retrieve arguments to be sent to prediction method.
- predictorArgs(object)<-
: Set arguments to be sent to prediction method.
Examples
showClass("modelObjFit")
[Package modelObj version 4.2 Index]