gpt4 book ai didi

r - 使用 scale_x_datetime 时没有前导零

转载 作者:行者123 更新时间:2023-12-04 09:33:15 24 4
gpt4 key购买 nike

是否可以在使用 ggplot2 的 scale_x_datetime 时从 x 轴上显示的小时中去除前导零?

最佳答案

我们可以使用 date_format来自 scales包裹:

library(ggplot2)
library(scales)

# dummy data
set.seed(1)
df1 <- data.frame(
x = as.POSIXct(runif(10, 0, 24 * 60 * 60), origin = "2017/04/20"),
y = 1:10
)

# use scales::date_format
ggplot(df, aes(x = x, y = y)) +
geom_point() +
scale_x_datetime(labels = date_format("%l:%M"))

?strptime :

%k The 24-hour clock time with single digits preceded by a blank.
%l The 12-hour clock time with single digits preceded by a blank.



enter image description here

关于r - 使用 scale_x_datetime 时没有前导零,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43528860/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com