Comparison of Relative Importances in a Multinomial Logit Model
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.
relrelimp(object, set1=NULL, set2=NULL, label1="set1", label2="set2", subset=TRUE, response.cat1=NULL, response.cat2=NULL)
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 |
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.
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
|
David Firth, d.firth@warwick.ac.uk
## 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.
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.