Matt Bannert
Matt Bannert

Reputation: 28264

Slicing plots generated by ggplot2

I wonder if it's possible to slice a graph respectively a .png file generated with ggsave. If I do not want to use the default legend ort title and set it to FALSE it leaves me with a lot of white space. So is there an R way to just cut the file several pixels above and below the graph itself?

Thx in advance!

Upvotes: 3

Views: 8296

Answers (1)

rcs
rcs

Reputation: 68829

You could change the plot.margin, e.g.

p + opts(plot.margin=unit(c(-1, 0, -1, 0), "lines"))

Since version 0.9.2 opts has been replaced by theme:

p + theme(plot.margin = unit(c(-1, 0, -1, -), "lines"))

Upvotes: 7

Related Questions