Dear Statalists,
I'm trying to export a table of information from Stata but I cannot find a solution. I have a variable list of 20 variables, all of them are dummies. For example: education is equal to 1 if the respondent mentions education and 0 otherwise. I have 19 other similar variables.
I want to see the propensity for respondents preferring Parties A, B, C, D or E (categorical) to mention variable 1(..., N) on my variable list.
I can easily do this in stata:
But I can not find out how to export this.
I have tried asdoc (which I think isn't working because I have too many variables in my $dictionary), esttout, outreg2 and dtable. None of it seems to be capable of giving me the output that I want. Do any of you have an idea for a solution?
I'm trying to export a table of information from Stata but I cannot find a solution. I have a variable list of 20 variables, all of them are dummies. For example: education is equal to 1 if the respondent mentions education and 0 otherwise. I have 19 other similar variables.
I want to see the propensity for respondents preferring Parties A, B, C, D or E (categorical) to mention variable 1(..., N) on my variable list.
I can easily do this in stata:
Code:
by party: ci prop $dictionary
I have tried asdoc (which I think isn't working because I have too many variables in my $dictionary), esttout, outreg2 and dtable. None of it seems to be capable of giving me the output that I want. Do any of you have an idea for a solution?
Comment