I made several weekley plots of different gaseous compounds (BVOCs) with ggplot and I put them together with plot_grid
function. Obviously compounds have different scales and Y axis are not aligned.
I wish align them by zero on Y axis.
I think that I can avoid to share the dataset and the single plots code, because the point is on plot_grid
function that put them together.
Here the plot_grid
function that I used:
plot_grid(metmax,acetalmax,formicmax,acetmax,nrow = 4,align = "hv",rel_widths= c(1,1,1,1),rel_heights = c(1.2,1.2,1.2,1.2))
Here an example of how appear my final plot with Y axis out of phase.