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.
我有一些代码会产生一个矩阵。然后,我使用以下函数从该矩阵生成热图:
heatmap(d)
但是,我希望能够直接保存此 img 并绕过显示图形,以便我可以将此功能合并到基于 unix 的工作流程中。
有人可以告诉我保存此图像而不在屏幕上显示它所需的代码片段吗?谢谢!
使用jpeg(),png()或tiff()创建文件。
jpeg()
png()
tiff()
jpeg(file="filename.jpg") heatmap(d) dev.off()