Question:
I have a plot similar to this and I would like to see each selected plot vertically, usingfacet_wrap
or par()
, I guess.Answer:
Just add this line to your code:facet_wrap(.~by, ncol=1) +

If you have better answer, please add a comment about this, thank you!