Browse Source

Añadir opción de cambio de color a theme_heatmap.

main
Costa 2 years ago
parent
commit
ece3a80215
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      R/theme_heatmap.R

+ 2
- 2
R/theme_heatmap.R

@ -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(),

Loading…
Cancel
Save