From 6e6d01b3fc6118ec2bcefff25c2f4d196febd94a Mon Sep 17 00:00:00 2001 From: Costa <47926492N@ICO.SCS.local> Date: Fri, 4 Feb 2022 15:22:52 +0100 Subject: [PATCH] =?UTF-8?q?Limpiar=20un=20c=C3=B3digo=20comentado.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- R/ggcorrplot.R | 2 -- 1 file changed, 2 deletions(-) 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))+