From fcbf87705f2163426faa443128978b7a5e376d61 Mon Sep 17 00:00:00 2001 From: Tanushree Tunstall Date: Sun, 14 Aug 2022 12:20:13 +0100 Subject: [PATCH] gg_pairs_all: output to a png in /tmp --- scripts/plotting/plotting_thesis/gg_pairs_all.R | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/plotting/plotting_thesis/gg_pairs_all.R b/scripts/plotting/plotting_thesis/gg_pairs_all.R index ffe601c..df1f24a 100644 --- a/scripts/plotting/plotting_thesis/gg_pairs_all.R +++ b/scripts/plotting/plotting_thesis/gg_pairs_all.R @@ -137,8 +137,8 @@ plot_corr_df_ppi2 = my_gg_pairs(corr_df_ppi2) # # Plot #5 # #my_gg_pairs(corr_df_na) # plot_corr_df_na = my_gg_pairs(corr_df_na) - - +png("/tmp/gg_pairs_all.png", height = 8, width=11.75, unit="in",res=300) cowplot::plot_grid(ggmatrix_gtable(plot_corr_df_ps),ggmatrix_gtable(plot_corr_df_cons), ggmatrix_gtable(plot_corr_df_lig),ggmatrix_gtable(plot_corr_df_ppi2), nrow=2, ncol=2, rel_heights = 7,7,3,3) +dev.off()