R语言 解析日期和时间 – strptime()函数
R语言中的 strptime() 函数用于解析给定模板的日期和时间表示。
语法: strptime(x, format, tz = “”)
参数:
x: 给定的日期和时间表示
y: 给定的模板,在其中进行解析
tz: 一个字符串,指定用于转换的时区
例子1:
# R program to illustrate
# strptime function
# Specifying a time
x <- "13:15:17"
# Calling strptime() function
# over specified time and template
y <- strptime(x, "% H:% M:% S")
# Getting the current date and
# given time into specified template
y
输出:
[1] "2020-06-17 13:15:17 UTC"
例2:
# R program to illustrate
# strptime function
# Specifying a date and time
x <- "10-02-2020 05:05:06 AM"
# Calling strptime() function
# over specified date and time, template
# and time zone
y <- strptime(x, "% d-% m-% Y % I:% M:% S", "GMT")
# Getting parsed date and time
y
输出:
[1] "2020-02-10 05:05:06 GMT"