jmv package reference manual error

Discuss the jamovi platform, possible improvements, etc.
Post Reply
MattMcMullen
Posts: 4
Joined: Mon Feb 19, 2018 7:36 pm

jmv package reference manual error

Post 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'))
User avatar
jonathon
Posts: 2613
Joined: Fri Jan 27, 2017 10:04 am

Re: jmv package reference manual error

Post by jonathon »

ah yes, you are quite right.

will fix this.

jonathon
MattMcMullen
Posts: 4
Joined: Mon Feb 19, 2018 7:36 pm

Re: jmv package reference manual error

Post 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.
Post Reply