Bookmark and Share

Notice: On April 23, 2014, Statalist moved from an email list to a forum, based at statalist.org.


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: st: Save the percentage of each response category into new variables


From   Nick Cox <[email protected]>
To   [email protected]
Subject   Re: st: Save the percentage of each response category into new variables
Date   Fri, 9 Sep 2011 18:20:19 +0100

Also, if percents rather than proportions are really needed, you can
do that within the same line.

 sysuse nlsw88
 bys race: egen p_mar = mean(100 * married)
 bys race: egen p_n_mar = mean(100 * never_married)

The easy details here are that -egen, mean()- works on expressions,
which can be more complicated than single variable names, and also
that mean(constant * variable) is equal to constant * mean(variable).

Note that

 bys race: egen p_n_mar = 100 * mean(never_married)

won't work.

On Fri, Sep 9, 2011 at 5:28 PM, Maarten Buis <[email protected]> wrote:
> On Fri, Sep 9, 2011 at 6:14 PM,  <[email protected]> wrote:
>> I have a panel data where I want to compare the percentage of people belonging to each category of the marital status variable in each group and each time point. There are five categories in the marriage variable and I have two time points and two groups each with say, 50 people.
>
> The trick is that the proportion is the mean of a dummy/indicator variable, so:
>
> *-------------- begin example -----------------
> sysuse nlsw88
> bys race: egen p_mar = mean(married)
> bys race: egen p_n_mar = mean(never_married)
> *------------- end example -----------------
> (For more on examples I sent to the Statalist see:
> http://www.maartenbuis.nl/example_faq )
>

*
*   For searches and help try:
*   http://www.stata.com/help.cgi?search
*   http://www.stata.com/support/statalist/faq
*   http://www.ats.ucla.edu/stat/stata/


© Copyright 1996–2018 StataCorp LLC   |   Terms of use   |   Privacy   |   Contact us   |   Site index