classesmethods.relaimpo | R Documentation |
Output objects from package relaimpo have classes relimplm
(output from calc.relimp), relimplmboot
(output from boot.relimp), relimplmbooteval
(output from booteval.relimp) or relimplmbootMI
.
For classes relimplm
, relimplmbooteval
and relimplmbootMI
, there are methods for plotting and printing,
usage of which is described below. For class relimplmbootMI
, there is in addition a summary-method,
which produces a less detailed output than the show / print - method.
For classes relimplm
, relimplmbooteval
and relimplmbootMI
,
there is in addition a method for extracting slots of the class with $
.
## S3 method for class 'relimplm'
print(x,...,show.coeffs = ifelse(any(c("lmg", "pmvd") %in% x@type)
& is.null(x@always), TRUE, FALSE))
## S3 method for class 'relimplm'
plot(x,...,names.abbrev=4, ylim=NULL, main=NULL, cex.title=1.5)
## S3 method for class 'relimplmbooteval'
print(x,...)
## S3 method for class 'relimplmbootMI'
print(x,...)
## S3 method for class 'relimplmbooteval'
plot(x, ..., lev=max(x@level), names.abbrev=4, ylim=NULL,
main=NULL, cex.title=1.5)
## S3 method for class 'relimplmbootMI'
plot(x, ..., lev=max(x@level), names.abbrev=4, ylim=NULL,
main=NULL, cex.title=1.5)
## S3 method for class 'relimplmbootMI'
summary(object, ..., lev = max(object@level))
x |
|
show.coeffs |
|
object |
|
... |
further arguments to functions |
names.abbrev |
|
ylim |
The plot routines try to use appropriate scaling. If adjustments are needed, |
main |
The plot routine uses a default title based on the reponses name.
If adjustments are desired, |
cex.title |
|
lev |
|
This documentation part describes S3 methods. In addition there are S4 methods for show
which
coincide with the S3 methods for print
and an S4 method for coercing objects of relimplm
to lists
(of their numeric elements).
Print (and show) methods produce annotated output for calc.relimp
, booteval.relimp
, and
mianalyze.relimp
(or the objects produced by these functions). Since version 2.1, calc.relimp
provides averaged coefficients for different sub model sizes (slot ave.coeffs
of class relimplm
),
if metrics based on averaging over orderings (lmg
and/or pmvd
) are calculated.
These are per default printed if the slot always
of x
is NULL
.
If some variables were forced into all models (non-NULL always
), the averaged coefficients
refer to the adjusted model after taking residuls from regressions on the always
-columns
of the X-matrix for both response and the other columns of the X-matrix. The reason is that these could be
easily and cheaply implemented into the existing code and do correspond to sub models relevant
for lmg
and pmvd
. Users who are interested in these coefficients, can set option show.coeffs=TRUE
in spite of non-NULL always
.
The plot methods produce barplots of relative contributions,
either of the metrics alone for output objects of class relimplm
from function calc.relimp
,
or of the metrics with lines indicating confidence intervals for output objects of class relimplmbooteval
from function booteval.relimp
or relimplmbootMI
from function booteval.relimp
.
Most par()
options can be set and should work on plot.
Exceptions: mfrow, oma and mar are set by the plot function,
depending on the number of metrics to plot and the amount of annotating text required.
The summary-method for class relimplmbootMI
allows to quickly display brief output and to change
the confidence level versus the level used in the original run (with interval bounds stored in the
“metric”.lower and “metric”.upper slots and displayed by print and show methods).
Because of a defined S3-extraction method,
slots of classes relimplm
, relimplmbooteval
and relimplmbootMI
can be extracted not only
with the @
extractor but also with $
.
Hence, output elements from functions calc.relimp
, booteval.relimp
, and mianalyze.relimp
can be extracted as though the output objects were lists.
Note that there also is an an internally-used class relimplmtest that permits the internal function calc.relimp_default.intern to output further detail needed for usage from within other funtions.
Ulrike Groemping, BHT Berlin
Go to https://prof.bht-berlin.de/groemping/ for further information and references.
relaimpo, calc.relimp
, booteval.relimp
,
mianalyze.relimp
,
relimplm-class
, relimplmboot-class
,
relimplmbooteval-class
, relimplmbootMI-class
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.