you could export the graphic, read it back in, and display it rotated as a rasterGrob, say, (or arasterImage after rotating the matrix, or a grImport grob if you want vector paths)
plot(1:10, rnorm(10))
library(grid)
cap <- grid.cap()
grid.newpage()
grid.raster(cap, vp=viewport(angle=30))
No comments:
Post a Comment