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.
以下の日付はどのような形式で、どのように変換できますか?
theData <- fromJSON(theUrl) theData["sampleDate"] $sampleDate [1] 1.439165e+12
ブラウザでデータを見ると、sampleDate の値は 1439164800000です。
ありがとう
あなたのデータは、Unix 時間で表されたミリ秒、つまりミリ秒である可能性が非常に高いです (そのため、1000 で割っています) 1970-01-01。これを試して:
1970-01-01
as.POSIXct(1.439165e+12/1000, origin = "1970-01-01", tz = "UTC") [1] "2015-08-10 00:03:20 UTC"
正しいタイムゾーン引数を使用する必要があることに注意してください。ここでは、その引数を示すために 1 つだけ使用しました。