Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のように因数分解されたFacebookAPIプルからタイムスタンプのベクトルを時刻/日付変数に再コーディングするにはどうすればよいですか?
[[1] 2012-10-19T19:52:43+0000
次のことを試しましたが、NAしか取得できません。
strptime(as.character(time), "%Y-%b-%dT%H:%M:%S+0000")
フォーマットが間違っています。する%b必要があります%m。
%b
%m
> strptime("2012-10-19T19:52:43+0000", "%Y-%m-%dT%H:%M:%S+0000") [1] "2012-10-19 19:52:43"