Re: [R] problem with graphic devices

2010-06-23 Thread Kuan(謝冠生)
Got it~! Thanks a lot!! I am trying to draw a chart not directly by R but PL/R in my postgresql database server. I googled and found that to make a pdf (or the other graphic devices) file might be an possible way to make it happen. Kuan >I'm guessing foo.pdf was created on your file system,

Re: [R] problem with graphic devices

2010-06-23 Thread Erik Iverson
Question: After using graphic devices, such as pdf(), png() in R, nothing happened. Screen Log: -- pdf("foo.pdf") plot(1:10) dev.off() null device 1 I'm guessing foo.pdf was created on your file system, in whatever directory getwd() returns. -

[R] problem with graphic devices

2010-06-23 Thread Kuan(謝冠生)
Version: OS: Windows XP/CentOS 5.5 R: 2.11.1 Acrobate reader: 9.3.2 Question: After using graphic devices, such as pdf(), png() in R, nothing happened. Screen Log: -- > pdf("foo.pdf") > plot(1:10) > dev.off() null device 1 > > -- The