Dear all,
I've been using the conjoint command to estimate marginal means (MMs) on my conjoint data and created graphs as id neatly explained in the documentation of conjoint.
In a next step, I want to export the results into a table for publication in word. Usually, I would use estout to report regression results. This does not work here. The only command that works is asdoc. However, most of the asdoc options do not seem to work and the final table is messy.
Ideally, I would like to end up with a table with four columns, reporting MMs of four different subgroup estimations, with SE in parentheses and p-values reported as * p<0.001, p<0.01, * p<0.05.
Can anyone help me out with this?
Thank you in advance, Katharina
I've been using the conjoint command to estimate marginal means (MMs) on my conjoint data and created graphs as id neatly explained in the documentation of conjoint.
In a next step, I want to export the results into a table for publication in word. Usually, I would use estout to report regression results. This does not work here. The only command that works is asdoc. However, most of the asdoc options do not seem to work and the final table is messy.
Ideally, I would like to end up with a table with four columns, reporting MMs of four different subgroup estimations, with SE in parentheses and p-values reported as * p<0.001, p<0.01, * p<0.05.
Can anyone help me out with this?
Thank you in advance, Katharina
Code:
** Forced Choice Outcome * women conjoint choice values appl train equota wquota if female == 1 , est(mm) id(id) matrix female_fc = e(results) * men conjoint choice values appl train equota wquota if female != 1 , est(mm) id(id) matrix male_fc = e(results) ** Rating Outcome * women conjoint support_1 values appl train equota wquota if female == 1 , est(mm) id(id) matrix female_r = e(results) * men conjoint support_1 values appl train equota wquota if female != 1 , est(mm) id(id) matrix male_r = e(results) // results stored in matrices for creating graphs
Comment