I'm using ggplot2 with the faceting option to plot several results of a data.frame.
It's a data.frame with three factors :
- participant (N) with 6 levels;
- condition (C) with 6 levels;
- stimuli (S) with 10 conditions.
I plot the results of one participants in one condition using the subset function and then I facet with ggplot. However, I was wondering if there was an easier solution in ggplot2?
Thanks for any help, I'm currently learning R and ggplot2.