Plot() error when using REngine.Rserve
I'm now work on a project which wants to use org.rosuda.REngine.Rserve to use facilities of R by C#. I have a particular problem that when I run the following code in C# client side: c.eval("pdf(file=\"plots.pdf\", width=11, height=8.5)"); c.eval("plot(1,2)"); An error occour which said Error in plot.new():cannot open file '', reason No such file or directory But I checked that the file "plots.pdf" has already been created successfully by "pdf.." function. In R semantics, the successive plot() will output figure to the active device opened by the "pdf(...)" function, i.e. "plots.pdf" this time