[R-SIG-Mac] Location of plot() window

2018-04-30 Thread Dennis Fisher
R 3.5.0 OS X Colleagues When I open a plot() window on-screen, it appears in the lower left corner of the screen. Is it possible to control the location? If so, what commands? And, if so, can I locate it to a display other than the primary display? Dennis Dennis Fisher MD P < (The "P Le

Re: [R-SIG-Mac] Location of plot() window

2018-04-30 Thread Ralph O'Brien
PlotDirector() instructs R to <> display the next plot in a separate graphics window appropriate for the operating system being used (Windows, Mac, or Linux), or <> build a graphics file in PDF, JPG, PNG, or SVG format. Visit http://rfuncs.weebly.com/plotdirector.html for full description and t

Re: [R-SIG-Mac] Location of plot() window

2018-04-30 Thread Simon Urbanek
Dennis, unfortunately, the Quartz windows are always placed at the same coordinates 100 x 100 and there is no option to change that. However, you can move it around using the Cocoa package if you so desire (assuming you're in the R.app): install.packages("Cocoa",,"http://rforge.net";) library

Re: [R-SIG-Mac] Location of plot() window

2018-04-30 Thread Dennis Fisher
Simon The Cocoa suggestion should address my need — thanks so much. Dennis Dennis Fisher MD P < (The "P Less Than" Company) Phone / Fax: 1-866-PLessThan (1-866-753-7784) www.PLessThan.com > On Apr 30, 2018, at 1:26 PM, Simon Urbanek > wrote: > > Dennis, > > un