Converting time format to numeric with R

℡╲_俬逩灬. 提交于 2021-01-21 07:42:09

问题


In most cases,we convert numeric time to posixct format using R. However, sometimes, we want to compare which time point is earlier, then we would prefer the numeric time format. Thus, it's quite practical question to convert time format to numeric. For example,I have the data format like "2001-03-13 10:31:00",

  begin <- "2001-03-13 10:31:00"

Using R, I want to figure out how to covert it into a numeric, e.g. the Julian time, something like the passing seconds between 1970-01-01 00:00:00 and 2001-03-13 10:31:00.

Do you have any suggestions?


The Julian calendar began in 45 BC (709 AUC) as a reform of the Roman calendar by Julius Caesar. It was chosen after consultation with the astronomer Sosigenes of Alexandria and was probably designed to approximate the tropical year (known at least since Hipparchus). see http://en.wikipedia.org/wiki/Julian_calendar


回答1:


If you jsut want to remove ":" , " ", and "-" from a character vector then this will suffice:

end <- gsub("[: -]", "" , begin, perl=TRUE)
#> end
#[1] "20010313103100"

You should read the section about 1/4 of the way down in ?regex about character classes. Since the "-" is special in that context as a range operator, it needs to be placed first or last.

After your edit then the answer is clearly what @joran wrote, except that you would need first to convert to a DateTime class:

 as.numeric(as.POSIXct(begin))
#[1] 984497460

The other point to make is that comparison operators do work for Date and DateTime classed variables so the conversion may not be necessary at all. This compares 'begin' to a time one second later and correctly reports that begin is earlier:

as.POSIXct(begin) < as.POSIXct(begin) +1
 #[1] TRUE



回答2:


Based on the revised question this should do what you want:

begin <- "2001-03-13 10:31:00"
as.numeric(as.POSIXct(begin))

The result is a unix timestamp, the number of seconds since epoch, assuming the timestamp is in the local time zone.




回答3:


The example from ?as.POSIX help gives

as.POSIXct(strptime(begin, "%Y-%m-%d %H:%M:%S"))

so for you it would be

as.numeric(as.POSIXct(strptime(begin, "%Y-%m-%d %H:%M:%S")))



回答4:


Maybe this could also work:

library(lubridate)
...
df <- '24:00:00'

as.numeric(hms(df))

hms() will convert your data from one time format into another, this will let you convert it into seconds. See full documentation.

I tried this because i had trouble with data which was in that format but over 24 hours.



来源:https://stackoverflow.com/questions/8883554/converting-time-format-to-numeric-with-r

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!