I have time series data set
y<-c(1,5,12,21,30,50,90,100)
Date = c("2020/07/16","2020/07/23","2020/07/30","2020/08/06","2020/08/13","2020/08/20","2020/08/27","2020/09/13")
if I have an other time series
q<-c(1,13,18,18,20,30,40,50)
how can I plot it in the same plot?
how to plot this data set show the date on the x-axis ? Thanks