web-dev-qa-db-ja.com

凡例(ラベルと色)を逆にして、高い値を階下に開始する方法は?

凡例のラベルの順序を逆にして7が下になり、1が上に来る最善の方法は何ですか?

ggplot legend challenge

df$day <- as.numeric(df3$day)
blues <- colorRampPalette(c('#132B43', '#56B1F7'))

p4 <- 
    ggplot(subset(df,feedback==1&stp>20), aes(x=correct, fill=day, colour=day)) +
    geom_histogram(colour="black", binwidth=10) +
    facet_grid(day ~ .) +
    ggtitle("Over-pronation histogram") +
    ylab("Count (150s period)") +
    xlab("% Steps in over-pronation") +guide_legend(reverse = false)
20
user1205101

あなたのコードはかなり奇妙で、falseの代わりにFALSEがあり、正しく配置されていませんguide_legend。正しい使い方は次のとおりです(@Harpalがヒントを与えます):

ggplot(data.frame(x=1:4, y=4:1, col=factor(1:4)), aes(x=x, y=y, col=col)) + 
  geom_point(size=10)
ggplot(data.frame(x=1:4, y=4:1, col=factor(1:4)), aes(x=x, y=y, col=col)) + 
  geom_point(size=10) + guides(colour = guide_legend(reverse=T))

enter image description hereenter image description here

34
tonytonov

あなたがそれを数値で入れていて、それが連続的なスケールであるなら、あなたはscale_fill_continuous(trans = 'reverse')またはscale_colour_continuous。あなたのコードを使用すると、これは次のようになります:

ggplot(subset(df,feedback==1&stp>20), aes(x=correct, fill=day, colour=day)) +
    geom_histogram(colour="black", binwidth=10) +
    facet_grid(day ~ .) +
    ggtitle("Over-pronation histogram") +
    ylab("Count (150s period)") +
    xlab("% Steps in over-pronation")+
    scale_fill_continuous(trans = 'reverse')
8
dmt

連続スケールの場合、guide_colorbar 必要とされている。

ここでは、色を反転させます方向。次に、色とサイズを逆にしますorderさまざまな関数で

library(tidyverse)
library(janitor)
iris %>% 
  as_tibble() %>% 
  clean_names() %>% 
  ggplot(aes(x = sepal_length,
             y = petal_width,
             size = sepal_width,
             color = petal_length)) +
  geom_point() +
  facet_wrap(~species,scales = "free") +
  #reverse color direction (the higher in value, the darker in color)
  scale_color_continuous(trans = 'reverse') +
  #edit legends
  guides(
    #reverse color order (higher value on top)
    color = guide_colorbar(reverse = TRUE),
    #reverse size order (higher diameter on top) 
    size = guide_legend(reverse = TRUE))
0
avallecam