关于R语言输出图片、PDF格式
输出tiff格式
tiff(file="hello.tif",res=600,compression = "lzw",
width=4800,
height=4800)
res=600,即dpi=600,“lzw”以lzw压缩图片
dev.off()
输出PDF格式
pdf(file="survival.pdf",
width=6,
height=6)
dev.off()
关于R语言输出图片、PDF格式
输出tiff格式
tiff(file="hello.tif",res=600,compression = "lzw",
width=4800,
height=4800)
res=600,即dpi=600,“lzw”以lzw压缩图片
dev.off()
输出PDF格式
pdf(file="survival.pdf",
width=6,
height=6)
dev.off()