Let's say I have a dataframe with one column x and other variables y1, y2, ... all continuos.
What's the quickest way to plot x ~ y1 and y2 on two different graphs but like they were in facet_wrap?
I know I can build multiple ggplots and use grid.arrange (but this way I am pasting the same code over and over for each y with no changes but the index of y) but is it possible to do it with facets?
Seems rather simple but I am having trouble with facets.