coltonbh / qcio

A package for structured Quantum Chemistry data.
MIT License
4 stars 2 forks source link

[FEATURE] - Visualization Tool Suite #34

Closed coltonbh closed 3 months ago

coltonbh commented 3 months ago

Add many of the visualization helper functions I'm currently building to a .viz module. Install it with pip install 'qcio[viz]' and then have an API like this:

from qcio import viz

viz.optimization(prog_output.results)
viz.structure(my_structure)
viz.structure_side_by_side(struc1, struc2)
...

I think having a suite of tools that makes visualizing results returned in qcio format makes the data structures really valuable. The visualizations don't have to be perfect because people can always build custom visualizations, but having default visualizations that give nice displays of key results and calculations would be a great time saver.

Don't like viz but perhaps vision, lens, focus, insight, view, or something like that.

Other Implementation Ideas

coltonbh commented 3 months ago

Done with #42