I have this dataframe called cpp
. I have plotted the figure below which is missing X-axis in two of the plots in the right. How can I put the x-axis for these two plots? Additionally, I would also like to increase the size of each box,so the lines would not touch the margin on the right.
ggplot(cpp, aes(x = Num_Good, y = IBS, group = key.related.sheet, color = cutoff)) +
geom_line() + facet_wrap(~cutoff) + geom_point()