Search found 43 matches

by coledavis
Tue Jun 04, 2019 4:07 pm
Forum: General
Topic: Effect size of a Kruskal-Wallis test
Replies: 7
Views: 6221

Re: Effect size of a Kruskal-Wallis test

coledavis wrote:epsilon squared (Tomczak and Tomcszak 2014).
k = kruskal.test(dv ~ iv, data = data)
k$statistic * (NROW(dv) + 1)
/ (NROW(dv) * NROW(dv) - 1)
(used in my R book - https://vorpress.com/r/index.htm)
by coledavis
Tue Jun 04, 2019 2:11 pm
Forum: General
Topic: Effect size of a Kruskal-Wallis test
Replies: 7
Views: 6221

Re: Effect size of a Kruskal-Wallis test

epsilon squared (Tomczak and Tomcszak 2014).
k = kruskal.test(dv ~ iv, data = data)
k$statistic * (NROW(health) + 1)
/ (NROW(health) * NROW(health) - 1)
(used in my R book - https://vorpress.com/r/index.htm)
by coledavis
Thu May 23, 2019 7:40 pm
Forum: General
Topic: comprehensive statistics textbooks
Replies: 9
Views: 16612

Re: comprehensive statistics textbooks

Alternatively, you could look up any given book's entry on Amazon and use the 'Look Inside' feature. That will show you a few pages.
by coledavis
Thu May 23, 2019 6:47 pm
Forum: General
Topic: comprehensive statistics textbooks
Replies: 9
Views: 16612

Re: comprehensive statistics textbooks

University teachers can ask for an inspection copy:
https://vorpress.com/contact.htm
by coledavis
Tue May 21, 2019 12:31 pm
Forum: General
Topic: comprehensive statistics textbooks
Replies: 9
Views: 16612

comprehensive statistics textbooks

https://vorpress.com

The Statistics without Mathematics series: Comprehensive books using jamovi for psychologists, sociologists and criminologists. Also a book using R. University lecturers may apply for free inspection ebooks via the website.
by coledavis
Thu May 24, 2018 12:43 pm
Forum: General
Topic: Bar plots for t-tests and ANOVA?
Replies: 3
Views: 3965

Re: Bar plots for t-tests and ANOVA?

Hi J, R and D - I can pass you some useful R code for this if and as needed. C
by coledavis
Fri May 18, 2018 11:09 am
Forum: Help
Topic: retain levels
Replies: 4
Views: 3449

Re: retain levels

I'll leave you chaps to it!
by coledavis
Thu May 17, 2018 11:14 am
Forum: Help
Topic: retain levels
Replies: 4
Views: 3449

retain levels

Hi. Using version 0.9.0.5, I now find that the retain levels option no longer applies for 'filter'.
by coledavis
Wed Apr 25, 2018 10:42 pm
Forum: General
Topic: Sidak Posthoc
Replies: 6
Views: 4511

Re: Sidak Posthoc

Well, you will find references to the Holm-Sidak correction. I would feel happier, however, if one or two other people checked this.
by coledavis
Sat Apr 21, 2018 2:18 am
Forum: General
Topic: Sidak Posthoc
Replies: 6
Views: 4511

Re: Sidak Posthoc

Isn't the Sidak another name for the Holm? (Find the smallest p value and multiply by the number of pairings; find the next smallest and multiply by the number of pairings minus 1; and so on.)