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.

47 lines
1.6 KiB

  1. ggheatmap<-function(df, x=NULL, y=NULL, value=NULL, grouping="mean", exclude_group=NULL, scale="none",color="#FFFFFF00"){
  2. if (is.null(x)){x=colnames(df)[1]}
  3. if (is.null(y)){y=colnames(df)[2]}
  4. if (is.null(value)){value=colnames(df)[3]}
  5. df<-rename(df, "VarX"=all_of(x), "VarY"=all_of(y), "Value"=all_of(value))
  6. if (is.null(exclude_group)){
  7. df<-df %>% group_by(VarX,VarY)
  8. }else{
  9. df<-df %>% group_by_("VarX","VarY",exclude_group) #%>% rename(exclude_group="all_of(exclude_group)")
  10. }
  11. if (grouping == "mean"){
  12. df<-df %>% summarise(Value=mean(Value)) %>% ungroup
  13. }
  14. if (grouping == "median"){
  15. df<-df %>% summarise(Value=median(Value)) %>% ungroup
  16. }
  17. order<-clustsort(df %>% spread(VarY,Value) %>% select(!all_of(exclude_group)) %>% as.data.frame)
  18. if (scale != "none"){
  19. if (scale == "rows"){
  20. cols<-unique(df$VarY)
  21. sca.df<-spread(df, VarY, Value)
  22. for (i in cols){sca.df[,i]<-scale(sca.df[,i])}
  23. df<-gather(sca.df, VarY, Value, all_of(cols))
  24. }
  25. if (scale == "cols"){
  26. cols<-unique(df$VarX)
  27. sca.df<-spread(df, VarX, Value)
  28. for (i in cols){sca.df[,i]<-scale(sca.df[,i])}
  29. df<-gather(sca.df, VarX, Value, all_of(cols))
  30. }
  31. }
  32. df$VarX<-factor(df$VarX, levels=order$x)
  33. df$VarY<-factor(df$VarY, levels=order$y)
  34. df %>%
  35. ggplot(aes(VarX, VarY, fill=Value))+
  36. labs(x=x, y=y)+
  37. geom_tile(aes(fill=Value), color=color)+
  38. scale_fill_gradientn(colors=col2(200))+
  39. theme(axis.text.x = element_text(angle = 90, hjust = 1, vjust=0.5),
  40. panel.background = element_blank(),
  41. axis.ticks = element_blank())
  42. }