Saving plot to tiff, with high resolution for publication (in R)

后端 未结 4 658
借酒劲吻你
借酒劲吻你 2020-12-23 11:42

A journal we are sending an article to is asking for the following:

To ensure the best reproduction quality of your figures we would appreciate high r

4条回答
  •  一整个雨季
    2020-12-23 12:01

    One thing you should do is use the compression parameter.

    For instance:

    tiff("outfile.tif", compression = "lzw")
    

    LZW is a lossless compression format, so you will not lose any data, but you will definitely reduce filesize.

提交回复
热议问题