Can someone help to know how to put labels in my bar chart. Only x has been used in the aes() which means y is default to count.
I am not able use the geom_text here. Please help me to know how to label this in bar chart with only one variable.
I want to display the ride values on the top of each bar.
ggplot(data = dframe, aes(x = Day_Of_Week)) +
geom_bar(fill = 'black') +
labs(title = 'No.of Days', x = 'Number Of Days', y = 'Rides') +
facet_wrap(~Member_Type)
If your question's been answered (even by you!), would you mind choosing a solution? It helps other people see which questions still need help, or find solutions if they have similar problems. Here’s how to do it: