I want to plot some results from an afex_aov object with papaja apa_lineplot
this ist my code so far:
papaja::apa_lineplot(data = anova_hyp1a_ACC
, id = "Subject"
, dv = "meanACC"
, factor = c("UpdatingSteps", "MemSetSize")
, ylab = "Proportion Correct"
, xlab = "Memory Set Size"
, dispersion = within_subjects_conf_int
,level=.99)
Despite I have coded the factor "UpdatingSteps" first in the factor argument, it is assigned to the grouping line visualization, instead of being on the x-axis. This is not very helpful because the effects aren't visible in this vis-style.
so: how can I change the factor assignment ? Any ideas? I read the papaja doc, but I didn't found the answer.
thanks
jan