尝试使用ggplot2绘制twitter情绪分析。 预期的输出是下图。
脚本: -
ggplot(sent_df, aes(x=polarity)) +
geom_bar(aes(y=..count.., fill=polarity)) +
scale_fill_brewer(palette="RdGy") +
labs(x="polarity categories", y="number of tweets") +
options(title = "Sentiment Analysis of Tweets \n(classification by polarity)",
plot.title = theme_bw(base_size=12))
运行上面的脚本时我得到错误
Error: Don't know how to add o to a plot
请告诉我我在做什么错。 提前谢谢。
答案 0 :(得分:0)
这是一种可能的正确方法:
<uses-permission android:name="android.permission.CAMERA" />