| relrelimp {relimp} | R Documentation |
Comparison of Relative Importances in a Multinomial Logit Model
Description
Produces a summary
of the relative importance of two predictors or two sets of predictors
in a fitted multinom model object, and compares
relative importances
across two of the fitted logit models.
Usage
relrelimp(object, set1=NULL, set2=NULL, label1="set1", label2="set2",
subset=TRUE,
response.cat1=NULL, response.cat2=NULL)
Arguments
object |
A model object of class
|
set1 |
An index or vector of indices for the effects to be included in the numerator of the comparison |
set2 |
An index or vector of indices for the effects to be included in the denominator of the comparison |
label1 |
A character string; mnemonic name for the
variables in |
label2 |
A character string; mnemonic name for the
variables in |
subset |
Either a vector of numeric indices for the cases to be included
in the standardization of effects, or a vector of logicals
( |
response.cat1 |
A character
string used to specify the first regression of interest
(i.e., the regression
which predicts the log odds on |
response.cat2 |
A character
string used to specify the second regression of interest
(i.e., the regression
which predicts the log odds on |
Details
Computes a relative importance summary as described in
relimp, for each of the two regressions specified by
response.cat1
and response.cat2 (relative to the same
reference category); and computes the
difference of those two relative importance summaries,
along with an estimated
standard error for that difference.
Value
An object of class relrelimp, with at least the following components:
model |
The call used to construct the model object summarized |
sets |
The two sets of indices specified as arguments |
response.category |
A character vector containing the specified
|
log.ratio |
The natural logarithm of the ratio of effect
standard deviations corresponding to the two sets specified.
A vector with
three components: the first is for |
se.log.ratio |
Estimated standard errors for the elements of
|
Author(s)
David Firth, d.firth@warwick.ac.uk
See Also
Examples
## Data on housing and satisfaction, from Venables and Ripley
library(MASS)
library(nnet)
data(housing)
house.mult <- multinom(Sat ~ Infl + Type + Cont, weights = Freq,
data = housing)
relrelimp(house.mult, set1 = 2:3, set2 = 7,
label1 = "Influence", label2 = "Contact",
response.cat1 = "Medium", response.cat2 = "High")
## Computes the relative contribution of Influence and Contact in
## each of the two logistic regressions (Med/Low and High/Low), and
## compares those two relative-contribution measures.