I have following commands by cowplot
require(cowplot);
tiff('./solution/AGM2.tiff', height = 18,width = 25, units = 'in',res = 60)
plot_grid(a28 + theme(axis.title.y = element_text(size =40),
axis.title.x=element_text(size =40),
axis.text.x=element_text(size =35),
axis.text.y=element_text(size =40),
title=element_text(size = 30),
legend.text=element_text(size = 30)),
a33 + theme(axis.title.y = element_text(size =40),
axis.title.x=element_text(size =40),
axis.text.x=element_text(size =35),
axis.text.y=element_text(size =40),
title=element_text(size = 30),
legend.text=element_text(size = 30)),
a61 + theme(axis.title.y = element_text(size =40),
axis.title.x=element_text(size =40),
axis.text.x=element_text(size =35),
axis.text.y=element_text(size =40),
title=element_text(size = 30),
legend.text=element_text(size = 30)),
align = 'h', nrow=2, ncol = 2,hjust=0.5,vjust=0.5)
dev.off()
And got the following graph
But I would like to leave the graph centralized, specifically the third figure (MUFAt) of the graph. Can someone please help me?