Good morning
I am using R
(with ggplot
)
A journal I am submitting to wants graphics files in either TIFF or EPS and using CMYK (not RGB). Searching around, I found that there is colormodel
in PDF
but not in 'TIFF. Typing ?eps found nothing, and ??eps led me to
postscriptwhich does have
colormodel` but produces .ps files. Are these the same as .eps files?
What should I substitute for my current code which is
jpeg(file = 'c:\\PATH\\FILE.jpg')
plotname
dev.off()
TIA