Hello, again. On the x-axis of my line graph, I have a categorical variable with five categories. However, the data is highly skewed and no one anwered the fifth category. As a result, Stata is not displaying the fifith category on the x-axis, which I would like to display to show that no one responded. I've played around with x-axis options and other things, but can't figure out how to display the fifth category.
This is the graph that I'm getting:

This is the code that I'm using:
twoway (line percentage health if dataset==0) ///
(line percentage health if dataset==1) ///
(line percentage health if dataset==2) ///
(line percentage health if dataset==3)
Any ideas for what option I might be able to use?
Thanks in advance for your help.
This is the graph that I'm getting:
This is the code that I'm using:
twoway (line percentage health if dataset==0) ///
(line percentage health if dataset==1) ///
(line percentage health if dataset==2) ///
(line percentage health if dataset==3)
Any ideas for what option I might be able to use?
Thanks in advance for your help.
Comment