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

P and q values in RNA Seq

Update the TOC (table of content) of MS Word .docx documents with Python