R数据中的日期到月份
Date to Month in R data
我有一个 column(date)
数字格式。我想从 table 中的数字中提取 (day, month)
格式的日期。 table ABC 中的名称和列名称是 Date
.
日期(样本)
95.00000
95.08333
95.16667
95.25000
95.33333
95.41667
Q: 是不是先把数字转成日期class再提取日期?
有人可以帮忙吗?
这应该可以解决基础 R 中的问题:
format(as.Date(as.numeric(Sys.Date()), origin = "1970-01-01"), "(%d, %m)")
#(26, 02)
我有一个 column(date)
数字格式。我想从 table 中的数字中提取 (day, month)
格式的日期。 table ABC 中的名称和列名称是 Date
.
日期(样本)
95.00000
95.08333
95.16667
95.25000
95.33333
95.41667
Q: 是不是先把数字转成日期class再提取日期? 有人可以帮忙吗?
这应该可以解决基础 R 中的问题:
format(as.Date(as.numeric(Sys.Date()), origin = "1970-01-01"), "(%d, %m)")
#(26, 02)