2014-02-20 108 views
0

我正在尋找一種方法來簡單的POSIX時間戳轉換這樣轉換POSIX日期和時間UNIX時間中的R

> time 
[1] "2014-02-19 17:40:41" 

到UNIX時間戳。我發現的所有解決方案都是相反的。任何人都可以提供一些幫助嗎? 在此先感謝!

回答

1

你試過這個嗎?

as.numeric(as.POSIXct("2014-02-20")) 

?POSIXct

There are two basic classes of date/times. Class "POSIXct" represents the (signed) 
number of seconds since the beginning of 1970 (in the UTC timezone) as a numeric vector.