From 719637934c137a3159f143d4dd37452a82e06eca Mon Sep 17 00:00:00 2001 From: Costa <47926492N@ICO.SCS.local> Date: Fri, 4 Feb 2022 15:06:30 +0100 Subject: [PATCH] Corregir problema con el fill en geom_text. --- R/ggcorrplot.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/ggcorrplot.R b/R/ggcorrplot.R index 06d044e..6ebccb1 100644 --- a/R/ggcorrplot.R +++ b/R/ggcorrplot.R @@ -20,5 +20,5 @@ ggcorrplot<-function(df, var, color="#FFFFFF00", stat="signif"){ scale_x_discrete(limits=order$x)+ scale_y_discrete(limits=order$y)+ theme_heatmap(line.color=color)+ - geom_text(data=df.pval, aes(label=Value)) + geom_text(data=df.pval, fill="#FFFFF00",aes(label=Value)) }