gpt4 book ai didi

r - ggplot2:如何以特定角度旋转图表?

转载 作者:行者123 更新时间:2023-12-03 02:58:33 25 4
gpt4 key购买 nike

我想将 ggplot2 图表旋转自定义角度。我找到了如何rotate the axis textelement_text(angle = 20)。我想对整个情节做类似的事情。

可重现的示例:

set.seed(123)

data_plot <- data.frame(x = sort(rnorm(1000)),
y = sort(rnorm(1000)))

ggplot(data_plot, aes(y, x)) +
geom_line() # + theme(axis.title.x = element_text(angle = 20))

该图应该旋转:

enter image description here

最佳答案

这是一个粗略的想法,将你的情节命名为p:

library(grid)
pushViewport(viewport(name = "rotate", angle = 20, clip = "off", width = 0.7, height = 0.7))
print(p, vp = "rotate")

enter image description here

您可能需要根据所需的角度和纵横比定制宽度高度

关于r - ggplot2:如何以特定角度旋转图表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48323534/

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