R tips: two methods for the "q" problem

1) 
postscript(file="plot.eps")
plot(object)
dev.off()

2) 
dat <- sample(1:1000,100)
pdf("plot.pdf",useDingbats=F)
plot(dat)
dev.off()


References:
http://boopsboops.blogspot.com/2011/07/importing-pdf-r-plots-into-inkscape-q.html
http://stackoverflow.com/questions/23524262/why-doesnt-inkscape-correctly-read-pdf-files-generated-by-r

Comments

Popular posts from this blog

gspread error:gspread.exceptions.SpreadsheetNotFound

Miniconda installation problem: concurrent.futures.process.BrokenProcessPool: A process in the process pool was terminated abruptly while the future was running or pending.

转载:彻底搞清楚promoter, exon, intron, and UTR