Dear Statalist,
Here is a part of the sample data, which shows the gender of each employee in 3500 companies in 20 years.
Is any way that I could convert the above data set to a panel that directly shows the total number of female employees in each company in different years? After sort the female out, how could I calculate the average age of all female employee in each company in different years?
Here is a part of the sample data, which shows the gender of each employee in 3500 companies in 20 years.
code | year | gender | age |
1 | 2000 | female | 46 |
1 | 2000 | male | 55 |
1 | 2000 | male | 47 |
1 | 2001 | male | 55 |
1 | 2001 | female | 32 |
1 | 2001 | male | 54 |
1 | 2002 | female | 65 |
1 | 2002 | female | 23 |
1 | 2002 | female | 54 |
2 | 2000 | male | 65 |
2 | 2000 | male | 76 |
2 | 2000 | male | 34 |
2 | 2001 | female | 56 |
2 | 2001 | male | 75 |
code | year | female | averagefemaleage |
01 | 2000 | 1 | 46 |
01 | 2001 | 1 | 32 |
01 | 2002 | 3 | 47 |
02 | 2000 | 0 | .. |
02 | 2001 | 1 | .. |
02 | 2002 | .. | |
03 | 2000 | .. | |
03 | 2001 | .. | |
03 | 2002 | .. | |
Comment