美文网首页
ggplot2: ggsave()

ggplot2: ggsave()

作者: LET149 | 来源:发表于2023-09-11 09:19 被阅读0次

    用来向外保存(输出) ggplot2 绘制的图像

    ggsave(plot=, file=, device=, units=, width=, height=)

      1. plot= : 需要输出的图片变量名称
      1. : file= : 用来保存图像的路径,文件名和文件拓展名
      1. : device= : 用来绘制图像的格式,包括:.pdf, .jpeg, .tiff, .png
      1. : units= : 输出图像的尺寸单位,包括:cm, mm, 和in
      1. : width= : 输出图像的宽度
      1. : height= : 输出图像的长度
    ggsave(p2, file="/home/zhiyong/Desktop/BlackHoleeeeeeee/kk.pdf", units = "cm", width = 10, height = 10)
    

    相关文章

      网友评论

          本文标题:ggplot2: ggsave()

          本文链接:https://www.haomeiwen.com/subject/qxjgmltx.html