I created a dataframe, DF.
date <- c("2018-06-25", "2018-06-25", "2018-06-26", "2018-06-26", "2018-06-
27", "2018-06-27")
temperature <- c("15", "18", "16", "17", "14", "15")
DF <- data.frame(date, temperature)
I want to plot temperature over the different dates using ggplot.
How do I adapt my code below, so that the scale on the y-axis starts at 0.
ggplot(DF, aes(date, temperature))+geom_point() + ggtitle('Temperature plot')