0% found this document useful (0 votes)
4 views1 page

Paired Sample T-Test and Wilcoxon Test Results

The document presents results from a paired t-test and a Wilcoxon signed rank test comparing two sets of sample data, 'before' and 'after'. The paired t-test yielded a t-value of 0.80527 with a p-value of 0.4658, while the Wilcoxon test resulted in a V value of 11 with a p-value of 0.4375. Both tests indicate no significant difference between the two samples.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views1 page

Paired Sample T-Test and Wilcoxon Test Results

The document presents results from a paired t-test and a Wilcoxon signed rank test comparing two sets of sample data, 'before' and 'after'. The paired t-test yielded a t-value of 0.80527 with a p-value of 0.4658, while the Wilcoxon test resulted in a V value of 11 with a p-value of 0.4375. Both tests indicate no significant difference between the two samples.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

R Console Page 1

> #paired sample data


> #before , after paired=t
>
> before<-c(22,12,34,12,51)
> after<-c(12,3,13,44,12)
> [Link](before,after,paired=T)

Paired t-test

data: before and after


t = 0.80527, df = 4, p-value = 0.4658
alternative hypothesis: true mean difference is not equal to
0
95 percent confidence interval:
-23.00957 41.80957
sample estimates:
mean difference
9.4

> [Link](before,after,paired=T)

Wilcoxon signed rank exact test

data: before and after


V = 11, p-value = 0.4375
alternative hypothesis: true location shift is not equal to
0

>

You might also like