Dear Stata users,
I use -statplot- (from SSC) wrote by eric_a_booth and Nick Cox. I want to modify variable's label, however, I can not find how to do that. Put it concretely, I want to (1) throughly hide / turn off the variable's label that appears in the left, or if this can not be done, then (2) use a shorter label instead. I know I can specify option varnames to use varname instead of its label. But I think that's not enough. And (3) provide more support to Chinese characters. At least up to now, the option swap() has no effect to Chinese labels.
I use -statplot- (from SSC) wrote by eric_a_booth and Nick Cox. I want to modify variable's label, however, I can not find how to do that. Put it concretely, I want to (1) throughly hide / turn off the variable's label that appears in the left, or if this can not be done, then (2) use a shorter label instead. I know I can specify option varnames to use varname instead of its label. But I think that's not enough. And (3) provide more support to Chinese characters. At least up to now, the option swap() has no effect to Chinese labels.
Code:
. which statplot c:\ado\plus\s\statplot.ado *! statplot - plots of summary statistics *! 1.3.0 Eric A. Booth and Nicholas J. Cox 18 July 2026
Code:
sysuse citytemp, clear statplot heatdd, over(region) label variable heatdd "this is a very very long story about Heating degree days" statplot heatdd, over(region) statplot heatdd, over(region) wrap(18) label variable heatdd "这是一个关于高温天数的很长很长很长的故事" statplot heatdd, over(region) statplot heatdd, over(region) wrap(18)

Comment