setEPS()
postscript(file = 'graph.eps', width = 3, height = 3)
plot(runif(25), runif(25))
dev.off()
For a PDF, replace first two lines with:
pdf('graph.pdf', height = 3, width = 3)
HTH (and congrats on reaching the publication stage!).
setEPS()
postscript(file = 'graph.eps', width = 3, height = 3)
plot(runif(25), runif(25))
dev.off()
For a PDF, replace first two lines with:
pdf('graph.pdf', height = 3, width = 3)
HTH (and congrats on reaching the publication stage!).