I have a csv file with x, y data and x,y location columns. i.e.
Test,Xloc,Yloc,X,Y
1,1,1,1,1
1,1,1,2,2
1,1,1,3,3
1,1,1,4,4
2,4,4,1,1
2,4,4,2,2
2,4,4,3,3
2,4,4,4,4
Assuming the subplot is 4x4 how could I put a line plot at the 1,1 location for test 1, and the 4,4 location for test 2?
I have ggplot2, and ggsubplot packages installed. Seems maybe it's facet_grid, but not sure and not finding o good examples. Basically there is going to be areas on the figure where there is no subplot.