1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
#Je regarde où sont mes valeurs NA
which(is.na(COMPLETOKOK)))
#J'essaie d'effacer la valeur de NA
vraimentcomplet<-COMPLETOKOK[complete.cases(COMPLETOKOK), ]
#Plus de valeur NA
which(is.na(vraimentcomplet)))
#Ne fonctionne pas
anova<-ezANOVA(data= vraimentcomplet , dv=value, wid=Sujet, within = .(Tache, variable), type=3, return_aov=T)
résumé(anova)
#I also try
bibliothèque(dplyr)
vraimentcomplet<-COMPLETOKOK %>%>%
filter_all(~ !is.na(.)))
library(tidyr)
vraimentcomplet %>% drop_na() -> vraimentcomplet
#Et quand je fais
ezDesign(
data = vraimentcomplet
, x = .(variable)
, y = .(Sujet)
, col = .(Tache)
)
ezDesign(
data = vraimentcomplet[!is.na(vraimentcomplet$value),]
, x = .(variable)
, y = .(Sujet)
, col = .(Tache)
)
#Il y a des cases blanches ce qui m'empêche de faire tourner ezanova... |
Partager