I've been trying to extract my summary stats from an mlogit
model run through Zelig
using texreg
, stargazer
and memisc
.
texreg
throws me the following error:
texreg(MLogitRes3)
Error in (function (classes, fdef, mtable) : unable to find an
inherited method for function ‘extract’ for signature ‘"vglm"’
stargazer
throws me the following error:
stargazer(MLogitRes3)
Error in objects[[i]]$zelig.call :
$ operator not defined for this S4 class
memisc
(using the mtable
function) throws me this final error:
mtable(MLogitRes3)
Error in UseMethod("getSummary") :
no applicable method for 'getSummary' applied to an object of class
"c('vglm', 'vlm', 'vlmsmall')"
Do none of these packages support mlogit
choice models within zelig
? Do I have options to export my summary stats into a table usable in LaTex elsewhere?