R语言: svg()
2024-04-02 本文已影响0人
LET149
保存图像为 .svg 格式
svg
:Scalable Vector Graphics
: 可缩放矢量图形
svg("path/file_name.svg", width=, height=)
用
dev.off()
关闭绘图设备
svg("/home/zhiyong/Desktop/ZZZZZZZZZZZ/kk/plot.svg", width = 7, height = 7) plot(1:10,1:10) dev.off()