Displaying 1 result from an estimated 1 matches for "xstamp".
Did you mean:
stamp
2006 Mar 11
2
how to create analog stripchart plots of x vs t (t=mm/dd/yyyy hh:mm:ss)
...ot;,sep=",",list("","",0))
>TheDates <- TheData[[1]]
>TheTimes <- TheData[[2]]
>TheValue <- TheData[[3]]
>
and here is how i am making the datetime objects:
>
>TimeStampStr <- paste(TheDates,TheTimes)
>TimeStampObj <- strptime(xStamp,"%m/%d/%y %H:%M:%S")
>
and then i try to plot it with:
>
>plot(TimeStampObj,TheValues)
>
but this is where i get an error like this:
>
Read 54 records
Error in plot.window(xlim, ylim, log, asp, ...) :
need finite 'ylim' values
In addition: Warning messag...