Basic R plots (plot(x=..., y=...)) appear to print to portrait-oriented, letter-sized paper. How can I change this to landscape-oriented?
Basic R plots ( plot(x=…, y=…) ) appear to print to portrait-oriented, letter-sized paper.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can change this when you open the graphic device. For example, for
X11:For
postscript()andpdf()you can change the paper size by specifying thepaperargument: set it to"a4r"and"USr"for rotated (landscape).Other graphic devices have similar mechanisms. See the online help for more details.