采用 ISO8601 字符格式的格式
参数
- x
-
要转换为 ISO8601 字符格式的对象。
- usetz
-
在格式中包含时区。如果
usetz
是TRUE
,则包括时区。如果usetz
为"Z"
,则时间将转换为 "UTC",并且时区以 "Z" ISO8601 表示法表示。 - precision
-
用 "ymdhms" 的子字符串表示的精度量,如 "y"ear、"m"onth、"d"ay、"h"our、"m"inute 和 "s"econd。 (例如 "ymdhm" 将显示分钟的精度。当
NULL
时,将显示对象的完整精度。 - ...
-
方法的附加参数。
例子
format_ISO8601(as.Date("02-01-2018", format = "%m-%d-%Y"))
#> [1] "2018-02-01"
format_ISO8601(as.POSIXct("2018-02-01 03:04:05", tz = "EST"), usetz = TRUE)
#> [1] "2018-02-01T03:04:05-0500"
format_ISO8601(as.POSIXct("2018-02-01 03:04:05", tz = "EST"), precision = "ymdhm")
#> [1] "2018-02-01T03:04"
相关用法
- R lubridate force_tz 替换时区以创建新的日期时间
- R lubridate fit_to_timeline 将 POSIXlt 日期时间与时间线相匹配
- R lubridate DateTimeUpdate 更改日期对象的组成部分
- R lubridate stamp 基于人性化模板设置日期和时间格式
- R lubridate interval 用于创建和操作 Interval 对象的实用程序
- R lubridate is.difftime x 是 difftime 对象吗?
- R lubridate as_date 将对象转换为日期或日期时间
- R lubridate date 获取/设置日期时间的日期部分
- R lubridate round_date 日期时间对象的舍入、取整和取整方法
- R lubridate make_difftime 创建一个 difftime 对象。
- R lubridate is.timespan x 是时间长度吗?
- R lubridate with_tz 获取不同时区的日期时间
- R lubridate mplus 在日期中添加和减去月份,但不超过新月份的最后一天
- R lubridate cyclic_encoding 日期时间的循环编码
- R lubridate as.interval 将对象更改为间隔
- R lubridate second 获取/设置日期时间的秒部分
- R lubridate quarter 获取日期时间的财政季度和学期
- R lubridate posix_utils 各种 POSIX 实用程序
- R lubridate date_decimal 将小数转换为日期
- R lubridate as.duration 将对象更改为持续时间
- R lubridate hour 获取/设置日期时间的小时部分
- R lubridate minute 获取/设置日期时间的分钟部分
- R lubridate month 获取/设置日期时间的月份部分
- R lubridate duration 创建一个持续时间对象。
- R lubridate leap_year 一年是闰年吗?
注:本文由纯净天空筛选整理自Hadley Wickham等大神的英文原创作品 Format in ISO8601 character format。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。