BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
MaryA_Marion
Lapis Lazuli | Level 10

I need to know how the following statistics are calculated: std dev under Ho, Mean Score and t approximation.

See code below. Does SAS test for size of samples and use approximation when appropriate? I question the output. 

 

data one;
input sample resp;
1 1
1 3
1 2
1 3
1 5
2 4
2 7
2 6
2 8
2 6
;
proc NPAR1WAY data=one wilcoxon;
        title "Nonparametric test to compare medians";
        class sample;
        var resp;
        exact wilcoxon;
   run;

 

1 ACCEPTED SOLUTION

Accepted Solutions
Rick_SAS
SAS Super FREQ

Since your example has tied values, please read how PROC NPAR1WAY treats tied values. That is a common source of error for people who are trying to reproduce the output.

 

The documentation includes

View solution in original post

1 REPLY 1
Rick_SAS
SAS Super FREQ

Since your example has tied values, please read how PROC NPAR1WAY treats tied values. That is a common source of error for people who are trying to reproduce the output.

 

The documentation includes

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 441 views
  • 1 like
  • 2 in conversation