Given such a data frame:
dt val
02-09 0.1
02-09 0.2
02-09 0.15
02-10 0.3
02-10 -0.1
...
I want to use the boxplot to show the medium, variance of val in each dt:
ggplot(data = df,aes(y=val,x=dt)) + geom_boxplot()
It can observed that there is just one box. When I tried outlier.colour = "red", all the points are red. Why? All the values are in the interval of (-1,1)

