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.
場合によっては、日付を操作しているときに、突然 40182 や 15368 のような数値が表示されることがあります。これは、たとえば、Excel からデータをインポートするときに発生する可能性がありますが、R での操作で発生する値内でも発生する可能性があります。値は次のようになります。 :
date1 <- 40182 date2 <- 15368
ただし、データのコンテキストでは、日付の値が必要です (例: 2011-12-16)。日付がこのように表示されるのはなぜですか?
2011-12-16
これは有効な日付値ですが、ソースが明確でない可能性があります。上記の場合、次のように日付を変換します。
# the value comes from Excel as.Date(40182,origin="1899-12-30") # the value comes from R but put in number format as.Date(15368,origin="1970-01-01")