Hi
I have the following situation:

To reproduce the problem:
I am unhappy with the way Stata handles the value labels of the x2 and x3 variables. Is there any way to change this? I figured out that I can probably change the font size, but ideal would be a line break instead of the comma that Stata automatically added. Is there such an option?
Thanks so much for your consideration
KS
I have the following situation:
To reproduce the problem:
Code:
clear input x1 x2 x3 y 0 0 0 2 0 0 1 5 0 1 0 7 0 1 1 3 1 0 0 9 1 0 1 4 1 1 0 2 1 1 1 4 end label define x 0 "very long word" 1 "much longer word" label val x1 x2 x3 x twoway bar y x1, by(x2 x3, row(1) note(""))
Thanks so much for your consideration
KS
Comment