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. 

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