Date: Wed, 14 Dec 2005 11:58:21 -0500
Reply-To: Rene Valverde <valverde-venturare@LILLY.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Rene Valverde <valverde-venturare@LILLY.COM>
Subject: Re: how to draw f test function using sas?
On Tue, 13 Dec 2005 23:24:52 -0800, lixiaoyao <lixiaoyao5880@YAHOO.COM>
wrote:
> Hi all
> Is there anyone who can tell me how to draw a f-test curve using sas?
> Thanks
Lixiaoyao,
Maybe something like this is what you are looking for?
data fisherf;
do ndf=5 to 60 by 5;
do ddf=5 to 60 by 5;
do x=0 to 5 by .02;
y=pdf('F',x,ndf,ddf);
output;
end;
end;
end;
run;
symbol v=none cv=blue i=j;
proc gplot data=fisherf uniform;
plot y*x/vm=0 hm=0 ;
by ndf ddf;
run;
quit;
Regards,
RVV
|