Hi,

Using Stata 13, I am running dfmlogit on the Stata dataset citybudget.dta available here
use http://fmwww.bc.edu/repec/bocode/c/citybudget.dta, clear

I am running the help file example

fmlogit governing safety education recreation social urbanplanning, ///
eta(minorityleft noleft houseval popdens)

It works fine. I am estimating marginal effects with

margins, dyex(houseval)

This also works fine but I only get marginal effects for the governing outcome and not the others -
safety, education, recreation, social, urbanplanning.


The help file uses dfmlogit but this command has been retired I believe and the following Stata error message suggests to use the margins commands.

dfmlogit only exists for older versions of Stata
use margins instead


How do I get the marginal effect for the other outcomes?

Thank you,

Don