Evening all from a wet and windy Ireland...
I am new to R and am trying to get my bar chart to start the y-axis at zero. Sounds simple but I've been banging my head against this one all afternoon!
This is my code:
Disch_data %>%
ggplot(aes(x=Month,y=Complex_Discharges))+
geom_bar(stat="identity")
Which produces this graph:
As you can see it is indeed a bar chart, but the y-axis doesn't start at zero!
How do I make it so that the y-axis starts at zero?
Thanks in advance for any help/advice