Page 1 of 1

jmv package reference manual error

Posted: Mon Feb 19, 2018 8:42 pm
by MattMcMullen
I noticed what I believe to be an error in the sample anovaRM example described in the ref manual. The code below is supposed to compare low and high levels of Disgusting, but assigns LDLF (low disgust low fright) and LDHF (low disgust high fright) to the cells, which compares levels of Fright, not Disgust.

anovaRM(
data = bugs,
rm = list(
list(
label = 'Disgusting',
levels = c('Low', 'High'))),
rmCells = list(
list(
measure = 'LDLF',
cell = 'Low'),
list(
measure = 'LDHF',
cell = 'High')),
rmTerms = list(
'Disgusting'))

Re: jmv package reference manual error

Posted: Tue Feb 20, 2018 7:49 am
by jonathon
ah yes, you are quite right.

will fix this.

jonathon

Re: jmv package reference manual error

Posted: Tue Feb 20, 2018 2:37 pm
by MattMcMullen
Thanks. I'm giving the jmv package a try for ANOVAs this semester in my stats class in Montana. I've previously used ezANOVA.