我想旋轉一個完整的ggplot對象90°。旋轉ggplot2圖形對象
我不想使用coord_flip
,因爲這在使用構面時似乎會干擾scale="free"
和space="free"
。
例如:
qplot(as.factor(mpg), wt, data=mtcars)+
facet_grid(.~vs + am, scale="free",space="free")
VS
qplot(as.factor(mpg), wt, data=mtcars)+
facet_grid(vs + am ~ ., scale="free",space="free")+
coord_flip()
我想什麼:
我可能需要使用gridExtra
。
爲什麼你需要與GGPLOT2 /格旋轉?在你想要使用的任何軟件(例如乳膠或單詞)中旋轉可能更容易。 – Roland