Displaying 1 result from an estimated 1 matches for "time_vs_id".
2010 May 11
2
Problems plotting date and time column from excel using R
...:40.2
and in the Insert function box it looks likes this:
9/21/2006 4:53:40 PM
I tired separating the time and date using the function below and then plotting again which fail to read properly
=TEXT(B2,"hh:mm:ss") and =TEXT(B9,"mm/dd/yyyy")
The R script am using is
plot.time_vs_id<- function(start,end){
setwd("C:/Documents and Settings/terry/Desktop/r_stuff")
x=read.table("MAV.csv",header=T, sep=",")
plot(x$time[start:end],x$packet_id[start:end],ylab="Packet ID", xlab="Time", type="p")
}
and
plot.hov_Points <...