2
votes

I have a ggplot like this:

ggplot(df,aes(x=DateDiff, fill=TEAM)) + geom_bar()

How can I label the bars with the results from the y axis, when there's no y axis defined? (without altering the df)

enter image description here

1

1 Answers

4
votes
ggplot(mtcars, aes(x = gear)) + geom_bar()+
  geom_text(stat='count',aes(label=..count..),vjust=-1)