gpt4 book ai didi

r - 如何反转图例(标签和颜色)如此高的值(value)从底部开始?

转载 作者:行者123 更新时间:2023-12-03 12:03:54 25 4
gpt4 key购买 nike

什么是反转图例标签顺序的最佳方法,因此 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)

最佳答案

你的代码很奇怪,有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 here
enter image description here

关于r - 如何反转图例(标签和颜色)如此高的值(value)从底部开始?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22458970/

25 4 0