我在使用图表时遇到了一个问题ggplotly()
:ggplot
y 轴消失了。这是一个使用数据集的可重现示例iris
(这个示例非常垃圾,但无论如何)
data(iris)
g = ggplot(data = iris, aes(x = Petal.Length, y = Petal.Width, fill = Species)) +
geom_bar(stat = "identity", position = "dodge") +
scale_fill_manual(name = "legend", values = c("blue", "red", "green")) +
ylab("Y title") +
ylim(c(0,3)) +
xlab("X title") +
ggtitle("Main title")
g
ggplotly(g)
如您所见,Y 轴标题消失了。
好吧,如果ylim
被删除它可以工作,但我想指定 y 限制。
我尝试执行以下操作:
data(iris)
g = ggplot(data = iris, aes(x = Petal.Length, y = Petal.Width, fill = Species)) +
geom_bar(stat = "identity", position = "dodge") +
scale_fill_manual(name = "legend", values = c("blue", "red", "green")) +
scale_y_continuous(name = "Y title", limits = c(0, 3)) +
xlab("X title") +
ggtitle("Main title")
g
ggplotly(g)
但现在它是不适合的传奇标题。
我的配置:R 3.2.0,情节 2.0.16,ggplot2 2.0.0
在这两个例子中,ggplot 给出的图表是我想要的,但 ggplotly 给出了其他的东西。这是一个问题,有解决方法吗?