Hello statalist community, I am trying to graph a bar chart for labor force participation by sex across different countries in different years.
This is the code I am using :
graph bar (mean) crlfsr1 if age >= 15 & age <= 64, over(sex) over(country_year) legend(on)
However the legend doesn't generate for the sex and the graph appears like this:
Any idea How I can fix the code so that the legend displays gender rather than mean of crlfsr1?
Thank you.
This is the code I am using :
graph bar (mean) crlfsr1 if age >= 15 & age <= 64, over(sex) over(country_year) legend(on)
However the legend doesn't generate for the sex and the graph appears like this:
Any idea How I can fix the code so that the legend displays gender rather than mean of crlfsr1?
Thank you.
Comment