Home > Blockchain >  Change the label position of each figure to the bottom with plot_grid
Change the label position of each figure to the bottom with plot_grid

Time:11-21

I would like to change the position of each label to the bottom and centered part of each figure, is it possible?

library(ggplot2)
library(cowplot)
df <- data.frame(
   x = 1:10, y1 = 1:10, y2 = (1:10)^2, y3 = (1:10)^3, y4 = (1:10)^4
           
  • Related