Corregir problema con el fill en geom_text.

This commit is contained in:
Costa
2022-02-04 15:06:30 +01:00
parent 05ac7461b6
commit 719637934c
+1 -1
View File
@@ -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))
}