以下是我的数据集:https://app.box.com/s/2g98iis1zpcu4kwm7ej58d8pf2h4vnwe
我想绘制一个时间序列图,显示6个月分手时各种情绪和情绪的平均值。
我正在关注这篇文章:https://juliasilge.com/blog/joy-to-the-world/
卡在这里:
posnegtime <- kdn_tweets %>%
group_by(created_at = cut(created_at, breaks="2 months")) %>%
summarise(negative = mean(negative),
positive = mean(positive)) %>% melt
错误:
Error in match.names(clabs, names(xi)) :
names do not match previous names
我还想描绘一周中的日子和一年中的几个月的情绪。像这样: