我在SAS中使用PROC BOXPLOT,它在.png中给我输出。我想更改输出表的字体大小,以便它可读,但我不知道如何使用我的代码。
axis1 order = (40 to 120 by 10)
label = (height = 1.25 'Score')
minor = (number = 1) ;
axis2 order = (-.5 0 .5 1.5 3)
label = (height = 1.25 'Time') ;
proc boxplot data = finaldata ;
plot Score * TIMENEW1 / vaxis = axis1
haxis = axis2
cboxfill = ORANGE CONTINUOUS
boxstyle=schematic
cboxes = BL ;
insetgroup N MEAN Q1 Q2 Q3 MIN MAX STDDEV/ header = 'Stats by TIME'
pos = top
cfill = YELLOW ;
run;
基本上我需要制作那些N / Mean / Q1..etc。字体更大。