I am using this code to graph a histogram, but the barlabels are overlapping eachother. Like in excel , is there a way to change orientation of the barlabels? I have been trying to look for the ans for the past 1 hour. I found orient and rotate option but don't seem to work here.
Thanks.
proc univariate data = have noprint;
histogram variable1 /
vscale=percent
barlabel = percent
midpoints = -50 to 50 by 2;
INSET N MEAN (8.2) MEDIAN (8.2) STD = 'Std. Dev' (8.3)/ POSITION = ne;
label variable1= "";
run;