From: Jinto83 on
Hi,

Is there any way in proc report that I can test if a median is significantly different from zero?


--- news://freenews.netfront.net/ - complaints: news(a)netfront.net ---
From: Arthur Tabachneck on
Is there a reason that you want to do it via proc report? proc
univariate can do it easily:

proc univariate data = "yourdata loccount mu0 = 0;
var write;
run;

ouputing, among other things, sign and signed rank test which provide
your answer.

Art
----------
On May 6, 8:12 pm, "Jinto83" <jint...(a)sina.com> wrote:
> Hi,
>
> Is there any way in proc report that I can test if a median is significantly different from zero?
>
> --- news://freenews.netfront.net/ - complaints: n...(a)netfront.net ---