Corrección error en el orden del escalado.
This commit is contained in:
+3
-3
@@ -18,9 +18,6 @@ ggheatmap<-function(df, x=NULL, y=NULL, value=NULL, grouping="mean", exclude_gro
|
|||||||
}
|
}
|
||||||
order<-clustsort(df %>% spread(VarY,Value) %>% select(!all_of(exclude_group)) %>% as.data.frame)
|
order<-clustsort(df %>% spread(VarY,Value) %>% select(!all_of(exclude_group)) %>% as.data.frame)
|
||||||
|
|
||||||
df$VarX<-factor(df$VarX, levels=order$x)
|
|
||||||
df$VarY<-factor(df$VarY, levels=order$y)
|
|
||||||
|
|
||||||
if (scale != "none"){
|
if (scale != "none"){
|
||||||
if (scale == "rows"){
|
if (scale == "rows"){
|
||||||
cols<-unique(df$VarY)
|
cols<-unique(df$VarY)
|
||||||
@@ -36,6 +33,9 @@ ggheatmap<-function(df, x=NULL, y=NULL, value=NULL, grouping="mean", exclude_gro
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
df$VarX<-factor(df$VarX, levels=order$x)
|
||||||
|
df$VarY<-factor(df$VarY, levels=order$y)
|
||||||
|
|
||||||
df %>%
|
df %>%
|
||||||
ggplot(aes(VarX, VarY, fill=Value))+
|
ggplot(aes(VarX, VarY, fill=Value))+
|
||||||
labs(x=x, y=y)+
|
labs(x=x, y=y)+
|
||||||
|
|||||||
Reference in New Issue
Block a user