R 语言中的 strftime() 函数用于将给定的日期和时间对象转换为其字符串表示形式。
用法: strftime(time)
参数:
time: specified time object
范例1:
Python3
# R program to illustrate
# strftime function
# Specifying a date and time
x <- "2020-06-01 16:15:10 EST"
# Calling strftime() function
strftime(x)
输出:
[1] "2020-06-01 16:15:10"
范例2:
Python3
# R program to illustrate
# strftime function
# Specifying a date and time using
# as.Date( ) function which converts
# the character data to dates.
x <- as.Date("2020-06-17 12:10:20 EST")
# Calling the strftime() function using the % F format
# which is equivalent to % Y-% m-% d (the ISO 8601 date format)
y <- strftime(x, '% F')
# Getting string representation of
# the given date and time object
y
输出:
[1] "2020-06-17"
相关用法
- R语言 as.Date()用法及代码示例
- R语言 strptime()用法及代码示例
- R语言 table()用法及代码示例
- R语言 toString()用法及代码示例
- R语言 sapply()用法及代码示例
- R语言 length()用法及代码示例
- R语言 weekdays()用法及代码示例
- R语言 months()用法及代码示例
- R语言 quarters()用法及代码示例
- R语言 get()用法及代码示例
- R语言 determinant()用法及代码示例
- R语言 charmatch()用法及代码示例
- R语言 col()用法及代码示例
- R语言 det()用法及代码示例
- R语言 row()用法及代码示例
- R语言 class()用法及代码示例
- R语言 typeof()用法及代码示例
- R语言 density()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Getting String Representation of the given Date and Time Object in R Programming – strftime() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。