Browse Source

Corregir problema con el fill en geom_text.

main
Costa 2 years ago
parent
commit
719637934c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      R/ggcorrplot.R

+ 1
- 1
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))
}

Loading…
Cancel
Save