LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (December 2005, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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


Back to: Top of message | Previous page | Main SAS-L page