在 R 中绘制 x 轴上带有日期的图表

发布于 10-31 09:55 字数 315 浏览 3 评论 0原文

我正在尝试在 x 轴上绘制日期,间隔为 1 个月,并旋转日期值以确保清晰。

r=runif(100)
d <- as.Date("2001/1/1") + 70*sort(r)
plot(d,r,type="l",xaxt="n")
axis.Date(1, at=seq(d[1],d[100],"month"), format="%m/%d/%Y")

这确实行不通。我试图获得类似于下图的内容:

Reference graph

I am trying to do a plot with date on x-axis with an interval of 1 month and date values rotated for clarity.

r=runif(100)
d <- as.Date("2001/1/1") + 70*sort(r)
plot(d,r,type="l",xaxt="n")
axis.Date(1, at=seq(d[1],d[100],"month"), format="%m/%d/%Y")

This doesn't really work. I am trying to get something similar to the following graph:

Reference graph

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦在深巷2024-11-07 09:55:09

它完全按照您要求函数执行的操作。

三个月,三刻。

> d[1]
[1] "2001-01-01"
> d[100]
[1] "2001-03-11"

试试这个。

r=runif(100)
d <- as.Date("2001/1/1") + 70*sort(r)
plot(d,r,type="l",xaxt="n")
axis.Date(1, at = seq(d[1], d[100], length.out=25),
        labels = seq(d[1], d[100], length.out=25),
        format= "%m/%d/%Y", las = 2)

它应该很容易调整为周/月/年。您可以自行决定如何使用 ?par 中的 mar 参数。

It does exactly what you ask the function to do.

Three months, three ticks.

> d[1]
[1] "2001-01-01"
> d[100]
[1] "2001-03-11"

Try this.

r=runif(100)
d <- as.Date("2001/1/1") + 70*sort(r)
plot(d,r,type="l",xaxt="n")
axis.Date(1, at = seq(d[1], d[100], length.out=25),
        labels = seq(d[1], d[100], length.out=25),
        format= "%m/%d/%Y", las = 2)

It should be easily adjusted to week/month/year. It's up to you to play with the mar parameter in ?par.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文