I am trying to create 2 ggplot bar graphs for text analysis to compare frequencies as percentages from the dictionary "loughran". Here is my code for one of the graphs. How can I edit my y range so that both graphs start at 0% and end at 100%? This way, it would be much easier to see the differences.
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))