2016-01-30 107 views
0

我想設定一個時間變量,以便將其用於對存儲在向量次比較和我編寫以下:如何初始化時間變量?

> openingTime <- as.POSIXct('08:00:00 AM', format='%H:%M:S %p', tzone = "EET") 
> openingTime 
[1] NA 

而且

> dput(openingTime) 
structure(NA_real_, class = c("POSIXct", "POSIXt"), tzone = "") 

我在做什麼錯在那裏?

+3

你缺少在S'的'前面的''%的跡象,而你應該使用'tz'而不是'tzone'。嘗試'opensTime < - as.POSIXct('08:00:00 AM',format ='%H:%M:%S%p',tz =「EET」)' – RHertel

+1

不正確的語法='NA'。 –

+0

謝謝,這樣做! – orestisf

回答

0

由於commented,爲了獲得不同的工作指出了@rhertel,正確的語法是:

openingTime <- as.POSIXct('08:00:00 AM', format='%H:%M:%S %p', tz = "EET")