You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Greetings,
I'm hoping you can help me. I'm looking to analyze some data from a repeated measures ANOVA design (2 groups, pre- and post-measures). Unfortunately there is some missing data and so currently my sample sizes are unbalanced (n=12 and n=15).
I can use dabestr to analyze the groups separately using a paired analysis. However, if I try to use the multi-group paired method, I get an error. Any advice or help would be great.
See below for reproducible example
Data
library(tidyverse)
library(dabestr)
demo_data <- data.frame(id = rep(seq(1:27), each = 2),
group = rep(c("amber", "blue"),
times = c(15, 12)),
phase = rep(c("baseline", "ptx"),
times = 27, each = 1),
score = rnorm(54, mean = 10, sd = 2))
Greetings,
I'm hoping you can help me. I'm looking to analyze some data from a repeated measures ANOVA design (2 groups, pre- and post-measures). Unfortunately there is some missing data and so currently my sample sizes are unbalanced (n=12 and n=15).
I can use dabestr to analyze the groups separately using a paired analysis. However, if I try to use the multi-group paired method, I get an error. Any advice or help would be great.
See below for reproducible example
Data
Single group analyses:
However, it fails if I try to run both groups together:
The text was updated successfully, but these errors were encountered: