I have a plot and I wanted to change the span argument, but I don't see a difference in my lines.My observations are more than 1000 in each of the data.
I used this code:
ggplot(data, aes(x=, y=)) + geom_smooth(aes(color="KHRC"),se = FALSE, span = 0.3)+
geom_smooth(data=GO1,aes(color="GO1"),se = FALSE, span = 0.3)+
geom_smooth(data=GO2,aes(color="GO2"),se = FALSE, span = 0.3)+
geom_smooth(data=GO4,aes(color="GO4"),se = FALSE, span = 0.3)+
geom_smooth(data=GO3,aes(color="GO3"),se = FALSE, span = 0.3)+
geom_smooth(data=GO6,aes(color="GO6"),se = FALSE, span = 0.3)+
scale_x_datetime(limits = c(ymd_hms("2016-11-05 09:00:00"), ymd_hms("2016-11-07 00:00:00")))+
labs(color="ID")+
ggtitle("x vs y ")
Suggestions on how to fix the span will be great.Thank you.