gpt4 book ai didi

r - 有没有办法在ggplot2的特定角度下在主题中使用panel.grid.major?

转载 作者:行者123 更新时间:2023-12-04 21:38:00 25 4
gpt4 key购买 nike

我想知道是否有办法在 ggplot2 中以特定角度旋转 panel.grid.major.x 线?我在文档中看到它使用 element_line但它没有 angle参数对应于 theme 中轴.title.x 类函数中的旋转ggplot 的元素来自 ggplot2 的对象包裹来自 R ?

编辑

我想在绘图上添加额外的行(如下面的示例所示),而不是添加 geom_abline对于每一行,我认为旋转面板网格会更容易。
enter image description here

最佳答案

肯定会更容易使用 geom_abline而不是尝试改变网格线处理坐标的方式。你不需要一个 geom_abline对于每条线,它将向量作为斜率和截距。所以:

ggplot(mtcars, aes(x = disp, y = mpg)) +
geom_point() +
theme_void() +
geom_abline(slope = 2, intercept = 0:10 * 50 - 800, colour = "grey50")

enter image description here

关于r - 有没有办法在ggplot2的特定角度下在主题中使用panel.grid.major?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33394430/

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