Hi,
I have problem with one warning: """WARNING: The font <sans-serif> is not available. Albany AMT will be used.""" on SAS server. I understand the problem but how to solve it without Admin rights. any hints?
IF I run the following code in EG8, there is no warning:
proc univariate data = sashelp.cars noprint;
histogram horsepower ;
title1 j=center height=15pt "title";
inset mean median n / position=nw cfill=ywh;
label horsepower= "sub_title";
run;
NOTE: PROCEDURE UNIVARIATE used (Total process time):
real time 0.13 seconds
cpu time 0.14 seconds
But when I try to export to PDF I get the following warning:
ods graphics on;
ods pdf FILE="/home/aaaa.pdf" style=HTMLBlue ;
ods select Histogram;
proc univariate data = sashelp.cars noprint;
histogram horsepower ;
title1 j=center height=15pt "title";
inset mean median n / position=nw cfill=ywh;
label horsepower= "sub_title";
run;
WARNING: The font <sans-serif> is not available. Albany AMT will be used.
WARNING: The font <sans-serif> is not available. Albany AMT will be used.
NOTE: PROCEDURE UNIVARIATE used (Total process time):
real time 2.87 seconds
cpu time 0.18 seconds