diff --git a/R/ggcorrplot.R b/R/ggcorrplot.R index cb52f8f..2c42856 100644 --- a/R/ggcorrplot.R +++ b/R/ggcorrplot.R @@ -20,8 +20,6 @@ ggcorrplot<-function(df, var, color="#FFFFFF00", stat="signif"){ df$Var2<-factor(df$Var2, levels=order$y) ggplot(df, aes(Var1, Var2))+ - # scale_x_discrete(limits=order$x)+ - # scale_y_discrete(limits=order$y)+ geom_tile(aes(fill=Value), color=color)+ geom_text(data=df.pval, aes(label=Value), color="white")+ scale_fill_gradientn(colors=col2(200))+