在情节中删除传奇

时间:2017-08-23 04:20:35

标签: r plotly

我有一些文字数据我正在尝试绘制并使用此代码:

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)

这给出了这个:

enter image description here

就像我编码一样,颜色传奇也消失了。好。然而,当我通过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)

enter image description here

为什么我不能在剧情中摆脱这个?

0 个答案:

没有答案