gpt4 book ai didi

r - ggplot和ggplotly之间的图例位置差异?

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

我发现了 ggplot 和 ggplotly 中同一个图表之间有趣而奇怪的区别

income_gap_chart <- ggplot(income_gap, aes(x = Country, y = Percent, fill = Income)) + 
geom_bar(position = "dodge", stat = "identity") +
scale_fill_brewer(palette = "Set1") +
coord_flip() +
theme(axis.title.y = element_blank()) +
scale_y_continuous(limits = c(0, 100)) +
theme_tufte() +
theme(axis.title.y = element_blank()) +
theme(legend.position = "bottom")
对于 ggplot 它看起来很完美,底部有一个图例标题
enter image description here
但是当我用 ggplotly() 包装它时,图例开始表现不同
enter image description here
我的问题 - 我想要 ggplotly 格式的第一个图表,但无法解决这个问题,底部的图例不起作用。想法?
谢谢!

最佳答案

在一些 R 专家的帮助下很快解决了。

添加了这个

ggplotly(income_gap_chart) %>% layout(legend = list(orientation = "h", x = 0.4, y = -0.2))

结果: enter image description here

谢谢!

关于r - ggplot和ggplotly之间的图例位置差异?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54451001/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com