在Proc gchart过程中,一般出现在标签注释语句里的j=r 什么意思啊。好像是换行。查了半天没找到,在这里请教一下各位大虾。
例如:
proc gchart data=fitness;
axis1 order=(0 to 20 by 2)
label=('Number of People')
minor=(number=1)
offset=(0,0);
axis2 label=('Age ' j=r 'Group');
hbar3d age / midpoints=(20 30 40 50)
freq
freqlabel='Total in Group'
subgroup=sex
autoref
maxis=axis2
raxis=axis1
coutline=black;
run;
quit;