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
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
Post a Comment