r 将字符串转换为datetime lubridate

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了r 将字符串转换为datetime lubridate相关的知识,希望对你有一定的参考价值。

A date + time is represented in R as an object of class POSIXct. A date is represented as an object of class Date.

mdy("09/14/2014")
ymd_hms("2014-09-24 15:23:10")

as.Date(df$order_datetime)


parse_date_time of lubridate package can help format multiple date formats in one go.

df1$order_datetime= parse_date_time(df1$order_datetime, c('%m%d%y %H:%M:%S', '%Y-%m-%d %H:%M:%S','%Y-%m-%d'))
### Needs to be in the exact same format or will give error ## this is good as dates and months are not confused

以上是关于r 将字符串转换为datetime lubridate的主要内容,如果未能解决你的问题,请参考以下文章

如何将 DateTime 转换为字符串 [重复]

将字符串dd / mm / yy转换为datetime

python模块datetime将字符串转换为日期

将 DateTime 转换为整数

琐事:如何将 JSON2.org DateTime 字符串转换为 C# DateTime

将 DateTime 转换为格式为 YYYYMMDD 的字符串