Reppo for internal functions.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
307 B

  1. theme_heatmap<-function(x,line.color="#FFFFFF00"){
  2. list(geom_tile(color=line.color),
  3. scale_fill_gradientn(colors=col2(200)),
  4. theme(axis.text.x = element_text(angle = 90, hjust = 1, vjust=0.5),
  5. panel.background = element_blank(),
  6. axis.ticks = element_blank())
  7. )
  8. }