You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be handy to be able to set just the lower or upper limit of a scale. For example, when making a line graph, you might just want to set the lower y limit to 0, but let ggplot automatically calculate the upper bound.
# Lower y value on plot is 8
ggplot(BOD, aes(Time, demand)) + geom_line()
# Something like this would be useful
ggplot(BOD, aes(Time, demand)) + geom_line() + ylim(0,NULL)