Displaying 1 result from an estimated 1 matches for "measured_data".
Did you mean:
measure_date
2013 Nov 08
3
Date handling in R is hard to understand
...- at least for me. I have to specifically tell R in which
time format the data is. It seems that Pandas knows how to handle date
without being told the format. The problem arises when I try to shift time
by a certain time. Say adding 3600 to shift it forward, that case I have to
use something like:
Measured_data$Date <- as.POSIXct(as.character(Measured_data$Date),
tz="",format = "%m/%d/%Y %I:%M %p")+3600
or Measured_data$Date <- as.POSIXct(as.character(Measured_data$Date),
tz="",format = "%m/%d/%Y %H:%M")+3600 depending on the format. The date
also attaches MD...