I exported eps and emf format figure and opened it in word. The figure is very rough after converting into pdf file (see below Fig.1). If export pdf format figure directly, no such problem (see below Fig.2)
Could anybody help me with this? Thanks!
x=(1:100)
y=x+rnorm(100)*10
postscript("Z:/eps.eps", width = 5, height = 5, horizontal = FALSE,
onefile = FALSE, paper = "special", colormodel = "cmyk")
plot(x,y,type='l',xlab='',ylab='')
dev.off()
pdf("Z:/pdf.pdf")
plot(x,y,type='l',xlab='',ylab='')
dev.off()