パブリケーション用のパブリケーショングラフを作成する必要がありますが、要素の相対的なサイズを維持しながらグラフを拡大するのに問題があります。要素の相対的なスケールを維持しながらグラフのサイズを大きくする方法
出版社は、この例の試験2において
Submit the image as TIFF, at one of the following resolutions:
Color: 300 dpi
Grayscale: 600 dpi
Line art: 1200 dpi
Text-based graphics should be provided as 300 dpi, close-cropped TIFFs, sized to match print.
To maximize the size of the figures on the PDF/reprint, figures should be submitted at the width of 2 columns (about 6.75 inches, 40 picas wide).
例えば
tiff(filename="Test1.tiff",width=400,height=400)
plot(c(2,2,4,4), c(2,4,2,4),xlim=c(0,5), ylim=c(0,10), xlab="Text xlab", ylab="Test ylab", pch=16, cex=1.5)
polygon(c(2,2,4,4),c(2,4,4,2), col="darkblue")
text(1,8,"Test")
dev.off()
tiff(filename="Test2.tiff",width=1200, height=1200)
plot(c(2,2,4,4), c(2,4,2,4),xlim=c(0,5), ylim=c(0,10), xlab="Text xlab", ylab="Test ylab", pch=16, cex=1.5)
polygon(c(2,2,4,4),c(2,4,4,2), col="darkblue")
text(1,8,"Test")
dev.off()
を必要と軸及びラベルははるかに小さく見えるが(グラフ領域として)大きくなっています。どうすれば修正できますか?
多くの感謝
があなたのANのためにありがとうございましたswer。残念ながら、すべての雑誌がEPSを受け入れるわけではありません。幅と高さのオプションで6.75と6の要素はそれぞれどこから来たのですか? – ECII
6.75は「6.75インチ幅」の質問から来ました。 6は私の標準のデフォルトです;) – csgillespie