BookmarkSubscribeRSS Feed
kirchi
Calcite | Level 5

For testing the pulse rate of one month old child is to be 120 per minute, a researcher
measures (per minute) the pulse rate of 10 one month old children as
120,118,125,122,117,120,121, 126,125,115 and applies sign test and Wilcoxon signedrank
test, then power of the Wilcoxon signed-rank test is more than the sign test. True or False!?

 

2 REPLIES 2
PeterClemmensen
Tourmaline | Level 20

Run Proc Univariate as this to get your answer

 

data pulse_rate;
input pulse @@;
infile datalines dlm = ',';
datalines;
120,118,125,122,117,120,121,126,125,115
;

proc univariate data = pulse_rate;
run;
Reeza
Super User

@kirchi wrote:

For testing the pulse rate of one month old child is to be 120 per minute, a researcher
measures (per minute) the pulse rate of 10 one month old children as
120,118,125,122,117,120,121, 126,125,115 and applies sign test and Wilcoxon signedrank
test, then power of the Wilcoxon signed-rank test is more than the sign test. True or False!?

 


PROC NPAR1WAY for non parametric tests. 

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 2 replies
  • 2199 views
  • 0 likes
  • 3 in conversation