I have what I hope is a ridiculously simple question. I am trying to follow an example that uses the function win.graph(), but my machine does not recognize win.graph(). I am running R 2.8.0 on OS X. Is there some OS X specific function that replaces win.graph or am I missing some package? Thanks in advance
On 12/17/2008 12:27 PM, Kirk Wythers wrote:> I have what I hope is a ridiculously simple question. I am trying to > follow an example that uses the function win.graph(), but my machine > does not recognize win.graph(). I am running R 2.8.0 on OS X. Is there > some OS X specific function that replaces win.graph or am I missing > some package?win.graph() is the name of the Windows graphics device. The platform-independent way to do the same thing is dev.new(). Duncan Murdoch