| Date: | Thu, 24 Feb 2011 14:25:56 -0800 |
| Reply-To: | "Nordlund, Dan (DSHS/RDA)" <NordlDJ@DSHS.WA.GOV> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | "Nordlund, Dan (DSHS/RDA)" <NordlDJ@DSHS.WA.GOV> |
| Subject: | Re: what does this log say ?? |
| In-Reply-To: | <AANLkTimCmkW+22RBH1t8h=RwH4YbxYQro6qbqZLTGqaR@mail.gmail.com> |
| Content-Type: | text/plain; charset=utf-8 |
> -----Original Message-----
> From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of
> SAS_learner
> Sent: Thursday, February 24, 2011 1:34 PM
> To: SAS-L@LISTSERV.UGA.EDU
> Subject: what does this log say ??
>
> Hello all,
>
> I am using the following Proc Gplot code to indicate a scatter plot (
> correlation analysis) and in the Log there are couple of messages that
> I do
> not understand , Hoe to get rid of them
>
> 698 axis2 order= (-9 to 6 by 1) label=(H=1 "neutrophil")
> width=1 ;
> 699 axis1 order= (-115 to 100 by 10) label=(H=1 angle=90 "CRP")
> width=1 ;
>
> 704 /*** by treatment groups ***/
> 705 proc gplot data=graph_case1 (where=( neut_chg ne . and
> crp_chg ne
> .));;
> 706 plot neut_chg * crp_chg = trtsort /haxis=axis1
> vaxis=axis2 ;
> 707 format trtsort trtfmt.;
> 708 title 'DRAFT';
> 709 title2 'Neutrophil count Vs. CRP';
> 710 title3 'Change from baseline to week12';
> 711 by trtsort;
>
> The SAS
> System
>
> 712 run;
>
> WARNING: Font TIMESROM could not be used.
> Font SIMPLEX substituted for font TIMESROM.
> NOTE: Regression equation : neut_chg(trtsort:1) = 0.045338 +
> 0.019602*crp_chg.
> WARNING: Font TIMESROM could not be used.
> Font SIMPLEX substituted for font TIMESROM.
> NOTE: Regression equation : neut_chg(trtsort:2) = -0.582822 +
> 0.049148*crp_chg.
> WARNING: Font TIMESROM could not be used.
> Font SIMPLEX substituted for font TIMESROM.
> NOTE: Regression equation : neut_chg(trtsort:3) = -0.523918 +
> 0.032135*crp_chg.
> WARNING: Font TIMESROM could not be used.
> Font SIMPLEX substituted for font TIMESROM.
> NOTE: Regression equation : neut_chg(trtsort:4) = -0.645471 +
> 0.035945*crp_chg.
> WARNING: Font TIMESROM could not be used.
> Font SIMPLEX substituted for font TIMESROM.
> NOTE: Regression equation : neut_chg(trtsort:5) = -1.06433 -
> 0.002705*crp_chg.
The log is telling you that somewhere you specified that you wanted to use a font called TIMESROM and SAS is telling you that it can't use (maybe doesn't recognize) that font so it is using a default font. You need to find where you are specifying the font and either remove it, or name a font SAS can use.
Hope this is helpful,
Dan
Daniel J. Nordlund
Washington State Department of Social and Health Services
Planning, Performance, and Accountability
Research and Data Analysis Division
Olympia, WA 98504-5204
|