Re: [R] Party plots

2009-09-04 Thread AnnieE
Nordlund, Dan (DSHS/RDA) wrote: You need to put the filename in quotes file = C:/Documents and Settings/aelmore/Desktop/foo.pdf Hope this is helpful, Dan Oh yes, this was very helpful (and don't I feel just too silly...). I am, however, still stuck. This is like pulling teeth,

Re: [R] Party plots

2009-09-04 Thread Petr PIKAL
Hi r-help-boun...@r-project.org napsal dne 04.09.2009 13:53:24: Nordlund, Dan (DSHS/RDA) wrote: You need to put the filename in quotes file = C:/Documents and Settings/aelmore/Desktop/foo.pdf Hope this is helpful, Dan Oh yes, this was very helpful (and don't I feel

Re: [R] Party plots SOLVED

2009-09-04 Thread AnnieE
Quote from Petr PIKAL No, no. Here you need to do your plotting routine. Something like plot(1:10, rnorm(10)) Now you can open it by e.g. Acrobat Reader or any suitable programme. Do not forget to quit from Acrobat when trying to use the file again, if it is opened it can not

[R] Party plots

2009-09-03 Thread AnnieE
I'm pretty new to R, and not much of a progammer (yet). I'm having trouble navigating the graphical output for the party algorithm. Essentially, my tree is too large for the default page size so the nodes overlap and obscure one another. Anybody know how to change the plot parameters to

Re: [R] Party plots

2009-09-03 Thread Achim Zeileis
On Thu, 3 Sep 2009, AnnieE wrote: I'm pretty new to R, and not much of a progammer (yet). I'm having trouble navigating the graphical output for the party algorithm. Essentially, my tree is too large for the default page size so the nodes overlap and obscure one another. Anybody know how to

Re: [R] Party plots

2009-09-03 Thread AnnieE
Achim Zeileis wrote: You can easily plot into a large PDF, e.g., something like this pdf(file = foo.pdf, height = 15, width = 20) plot(foo) dev.off() and then view the PDF in an external viewer, zooming into parts of a tree etc. Depending on the size of the tree in foo, you

Re: [R] Party plots

2009-09-03 Thread Nordlund, Dan (DSHS/RDA)
-Original Message- From: r-help-boun...@r-project.org [mailto:r-help-boun...@r-project.org] On Behalf Of AnnieE Sent: Thursday, September 03, 2009 12:57 PM To: r-help@r-project.org Subject: Re: [R] Party plots Achim Zeileis wrote: You can easily plot into a large PDF