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.

53 lines
1.7 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. if (length(unique(df$VarX)) > 1 & length(unique(df$VarY)) > 1){
  18. order<-clustsort(df %>% spread(VarY,Value) %>% select(!all_of(exclude_group)) %>% as.data.frame)
  19. }else{
  20. order<-list("x"=df %>% pull(VarX) %>% unique, "y"=df %>% pull(VarY) %>% unique)
  21. }
  22. if (scale != "none"){
  23. if (scale == "rows"){
  24. cols<-unique(df$VarY)
  25. sca.df<-spread(df, VarY, Value)
  26. for (i in cols){sca.df[,i]<-scale(sca.df[,i])}
  27. df<-gather(sca.df, VarY, Value, all_of(cols))
  28. }
  29. if (scale == "cols"){
  30. cols<-unique(df$VarX)
  31. sca.df<-spread(df, VarX, Value)
  32. for (i in cols){sca.df[,i]<-scale(sca.df[,i])}
  33. df<-gather(sca.df, VarX, Value, all_of(cols))
  34. }
  35. }
  36. df$VarX<-factor(df$VarX, levels=order$x)
  37. df$VarY<-factor(df$VarY, levels=order$y)
  38. df %>%
  39. ggplot(aes(VarX, VarY, fill=Value))+
  40. labs(x=x, y=y)+
  41. geom_tile(aes(fill=Value), color=color)+
  42. scale_fill_gradientn(colors=col2(200))+
  43. theme(axis.text.x = element_text(angle = 90, hjust = 1, vjust=0.5),
  44. panel.background = element_blank(),
  45. axis.ticks = element_blank())
  46. }