R 2.4.0 for Windows The following plot appears as a squared window (as all r-plots) Not all subtitles are visible, but all subtitle will appear, when changing the aspect ratio of the plot window with the mouse to a wide format. But does not work when using the save as postscript menu item from the plot window. is there any solution for that? opar <- par(mfrow = c(2,2), oma = c(0, 0, 1.1, 0)) mp <- barplot2(VADeaths) # default mp <- barplot2(VADeaths) # default mp <- barplot2(VADeaths) # default mp <- barplot2(VADeaths) # default par(opar) Regards Knut
Plot window - save as Postscript question
3 messages · Knut Krueger, Uwe Ligges
Knut Krueger wrote:
R 2.4.0 for Windows The following plot appears as a squared window (as all r-plots) Not all subtitles are visible, but all subtitle will appear, when changing the aspect ratio of the plot window with the mouse to a wide format. But does not work when using the save as postscript menu item from the plot window. is there any solution for that?
Yes: Use the postscript() device explicitly and define the width and height in the function call. Uwe Ligges
opar <- par(mfrow = c(2,2), oma = c(0, 0, 1.1, 0)) mp <- barplot2(VADeaths) # default mp <- barplot2(VADeaths) # default mp <- barplot2(VADeaths) # default mp <- barplot2(VADeaths) # default par(opar) Regards Knut
______________________________________________ R-help at stat.math.ethz.ch mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.
Uwe Ligges schrieb:
Yes: Use the postscript() device explicitly and define the width and height in the function call.
I tried it before but I think I did a mistake: Does the width and height command not work with If paper="letter" ? The plot was cutted at the upper boarder of the "paper" I tried it with paper="special" and it worked now Best regards Knut