我有一些文字数据我正在尝试绘制并使用此代码:
ggplot(aes(x = label, y = tfidf, color = factor(label), size = tfidf, label = word), data = worddf)+
geom_text()+
scale_color_hue(l=40, c=35, guide=FALSE)
这给出了这个:
就像我编码一样,颜色传奇也消失了。好。然而,当我通过ggplotly运行时,颜色图例又回来了:
graph <- ggplot(aes(x = label, y = tfidf, color = factor(label), size = tfidf, label = word), data = worddf)+
geom_text()+
scale_color_hue(l=40, c=35, guide=FALSE)
ggplotly(graph)
为什么我不能在剧情中摆脱这个?