I am currently conducting (conditional) multinomial logistic regression analyses using the mlogit package in R. The standard output of these models are coefficients, standard errors, and their significance level. As these coefficients can be hard to interpret, I also calculate marginal effects using the effects() function included in the package. However, the effects() function only provides the marginal effects (or elasticities) but no other information. Ideally, I would also present some information on significance and confidence intervals. Is there a function or easy way to calculate the standard errors and level of significance of marginal effects calculated by effects()?
Example using the MC dataset included in mlogit package
# loading packages
library(mlogit)
library(Formula)
# loading dataset on mode of travel from mlogit package
data("ModeCanada", package = "mlogit")
# only include choice sets with all four alternatives
MC <- dfidx(ModeCanada, subset = noalt == 4)
# formula of a multinomial model with income as a predictor of
# the mode of travel
ml.MC1 <- mlogit(choice ~ 1 | income | 1, MC)
# calculate model
summary(ml.MC1)
# output includes coefficients of the model but also standard
# error, z-values, and level of significance
Coefficients :
Estimate Std. Error z-value Pr(>|z|)
(Intercept):air -1.5035093 0.1963055 -7.6590 1.865e-14 ***
(Intercept):bus -1.7715605 0.6643887 -2.6665 0.007666 **
(Intercept):car 0.7371313 0.1572490 4.6877 2.763e-06 ***
income:air 0.0414857 0.0034315 12.0896 < 2.2e-16 ***
income:bus -0.0510644 0.0181427 -2.8146 0.004884 **
income:car 0.0053445 0.0029496 1.8120 0.069991 .
---
Signif. codes:
0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1
Log-Likelihood: -2779.2
# calculate marginal effects (an absolute increase of predictor as absolute
# change in predicted outcome probability)(at sample means).
# However, the output only includes the marginal effect of changes in
# income, but no info on standard errors, etc.
effects(ml.MC1, covariate = "income", type = "aa")
train air bus car
-0.0029162845 0.0086781323 -0.0001209537 -0.0056408941