ggplot2: How to rotate a graph in a specific angle?

谁都会走 提交于 2020-01-11 05:47:26

问题


I would like to rotate a ggplot2 graph by a self-specified angle. I found how to rotate the axis text with element_text(angle = 20). I would like to do something similar with the whole plot.

Reproducible example:

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))

This graph should be rotated:


回答1:


Here's a rough idea, calling your plot p:

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

You'll probably want to tailor the width and height to the angle and aspect ratio you want.



来源:https://stackoverflow.com/questions/48323534/ggplot2-how-to-rotate-a-graph-in-a-specific-angle

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!