Compare commits

...

2 Commits

Author SHA1 Message Date
Costa 7d03719bf3 Añadida función ggcorrplot. 2022-02-04 13:58:17 +01:00
Costa ece3a80215 Añadir opción de cambio de color a theme_heatmap. 2022-02-04 13:57:23 +01:00
2 changed files with 20 additions and 2 deletions
+18
View File
@@ -0,0 +1,18 @@
ggcorrplot<-function(df, var){
m.df<-df %>% spread(Cyt, Value) %>% select(-pats)
mcor<-cor(m.df, m.df, use="pairwise.complete.obs") # Por defecto usa el método de Pearson.
mpval<-Hmisc::rcorr(as.matrix(m.df))$P
df<-mcor %>% as.data.frame() %>% add_column(Var1=rownames(mcor),.before=1) %>%
gather(Var2, Value, -Var1)
df.pval<-mpval %>% as.data.frame() %>% add_column(Var1=rownames(mpval),.before=1) %>%
gather(Var2, Value, -Var1)
order<- mcor %>% as.data.frame() %>% add_column(Var1=rownames(mcor),.before=1) %>% clustsort
ggplot(df, aes(Var1, Var2, fill=Value))+
scale_x_discrete(limits=order$x)+
scale_y_discrete(limits=order$y)+
theme_heatmap(line.color="black")+
geom_text(data=df.pval, aes(label=round(Value, 2)))
}
+2 -2
View File
@@ -1,5 +1,5 @@
theme_heatmap<-function(x){
list(geom_tile(),
theme_heatmap<-function(x,line.color="#FFFFFF00"){
list(geom_tile(color=line.color),
scale_fill_gradientn(colors=col2(200)),
theme(axis.text.x = element_text(angle = 90, hjust = 1, vjust=0.5),
panel.background = element_blank(),