I'm trying to figure out why plotting a second line on my line graph doesn't work.
My dataset looks something like this:
Time<- c("2011-10-16 09:33","2011-10-16 09:54")
Y1<-c("50259", "41090")
Y2<-c("9823", "98723")
When I plot
plot(Time,Y1,type="l",col="red")
the graph looks fine. But then I add
lines(Time,Y2,col="green")
and nothing registers on the graph. Anyone have any idea why?