I am making a box plot graph with Stata 14. I have a categorical variable on the x-axis (CDR) and a continuous variable on the y-axis (NPI). When I generate the graph I can add/modify a title for the y-axis but there are no options for the x-axis. It shows the variables points and numbers in the x-axis but without title. I can make some modifications but the change that I make do not appear in any dialog box. How do I see the lines of code added during editing to add them to my do file?
NPI is a number between 0-144
CDR is 0, 0.5, 1, or 2.
The basic graph code line that I used is:
graph box NPI, over(CDR)
Thanks!