How to save DCCM plot generated by Bio3d in linux operation system as png format?

Issue #953 new
Soumi Das created an issue

How to save DCCM plot generated by Bio3d in linux operation system as png format?

Comments (3)

  1. Xinqiu Yao

    Wrap the plot() function with the png()/dev.off() combination. For example,

    png("plot.png", ...)
    plot.dccm(...)
    dev.off()
    

    Check ?png for more detail.

  2. Log in to comment