I I hope you can assist me. I write a code that shows a bar chart in R. I want to add a data label to the bars, but when I add the geom_text code, it doesn't show me the graph.
Do you have any idea how to solve this? And also that the thousands of numbers will be with,
Thank you!
p<-ggplot(DATA.df, aes(x=sentiment))+
geom_bar(stat="count", width=0.6, color=c('red', 'grey', 'green'))
p