Hi there, I was using proc sgplot to make a scatter plot and wanted the fonts for both label and legend be Times New Roman, but it didn't work for the following code. All the other options of labelattrs such as weight, size, color worked. Any ideas about this? ods graphics/reset imagename="AF" imagefmt=png; Proc sgplot data=Model noborder ; scatter x= AC y= FR/jitter jitterwidth=0.2 markerattrs=(size=5); xaxis values=(0 to 7 by 1) label= " Rating by Rater1" labelattrs=(weight=bold size=14 family="Times New Roman" color=red); yaxis values=(0 to 7 by 1) label= "Rating by Rater2" labelattrs=(weight=bold size=11 family="Times_New_Roman"); inset " P value < 0.0001"/position=top textattrs=(size=12 weight=bold family="Times New Roman" color=red) noborder ; run; Thanks!
... View more