是否可以将 X 轴标签分为两个级别?

发布于 2024-12-01 02:47:55 字数 222 浏览 0 评论 0原文

我的 X 轴标签是字符串,旋转它们会让我的绘图看起来很丑。在ggplot中,有没有一种方法可以分割X轴标签,使它们的一半出现在顶部,一半出现在底部(交替样式)。 的是:

Label1 Label2 Label3 Label4

所以我想要

Label1   Label3
    Label2    Label4

My X-axis labels are strings and rotating them is making my plot look ugly. In ggplot, is there a way to split up the X-axis labels such that half of them appear on the top and half on the bottom (alternating style). So instead of:

Label1 Label2 Label3 Label4

I want:

Label1   Label3
    Label2    Label4

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

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

发布评论

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

评论(1

无妨# 2024-12-08 02:47:55

您始终可以在 x 轴值前面加上交替的换行符:

dat <- data.frame(x = c('Label1','\nLabel2','Label3','\nLabel4'),y = 1:4)
ggplot(data = dat, aes(x = x, y = y)) + 
  geom_point()

这会产生以下结果:

在此处输入图像描述

作为旁注,我认为也许您可以将值向量传递给 opts 中的 vjust,但这似乎不起作用。但可能在开发版本中。

You can always prepend the x axis values with alternating newline characters:

dat <- data.frame(x = c('Label1','\nLabel2','Label3','\nLabel4'),y = 1:4)
ggplot(data = dat, aes(x = x, y = y)) + 
  geom_point()

which produces this:

enter image description here

As a side note, I thought that perhaps you could pass a vector of values to vjust in opts, but that didn't seem to work. It might in the development version though.

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