Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我发现非常方便的 dev.copy2pdf 命令可以将我正在查看的窗口复制到 pdf 文件中,如下所示:
plot(rnorm(1000)) dev.copy2pdf(file="myfile.pdf")
我的问题是:是否有dev.copy2svg相同效果的等价物,但写成 svg 格式?
dev.copy2svg
实际上,dev.copy2pdf它是对泛型dev.copy函数的方便包装。您可以使用它来复制到 SVG 设备,如下所示:
dev.copy2pdf
dev.copy
plot(rnorm(1000)) dev.copy(svg, file="myfile.svg") dev.off()