Displaying 1 result from an estimated 1 matches for "node80".
Did you mean:
node0
2007 Jul 23
1
postscript bug? (PR#9803)
postscript() produces files that are not encoded as eps, according to
the standard. Hence, word processors such as OpenOffice and AbiWord do
not recognise the files as eps. See
http://www.postscript.org/FAQs/language/node80.html
The problem is in the first line of the postscript file: The header is
wrong. It should be:
%!PS-Adobe-3.0 EPSF-3.0
whereas postscript() produces:
%!PS-Adobe-3.0
The following code replicates the problem:
x <- rnorm(10)
y <- rnorm(10)
postscript("test.eps")
plot(x,y)
dev....