我正在尝试为文本分析创建 2 个 ggplot 条形图,以将频率作为字典“loughran”中的百分比进行比较。这是我其中一张图的代码。如何编辑我的 y 范围,使两个图表都从 0% 开始并以 100% 结束?这样,更容易看出差异。
ggplot(loughran_nc) +
aes(x = fct_reorder(sentiment, perc), y = perc)+
geom_col()+
ylab("Percentage") +
xlab("Sentiment")+
ggtitle("Sentiment Analysis: Non-Complaints Loughran dictionary")+
theme(plot.title = element_text(hjust = 0.5))