https://github.com/llnl/pydv
PyDV: Python Data Visualizer
https://github.com/llnl/pydv
1d data-analysis data-viz python visualization
Last synced: 13 days ago
JSON representation
PyDV: Python Data Visualizer
- Host: GitHub
- URL: https://github.com/llnl/pydv
- Owner: LLNL
- License: other
- Created: 2019-04-03T21:29:48.000Z (almost 7 years ago)
- Default Branch: main
- Last Pushed: 2025-10-22T20:23:17.000Z (3 months ago)
- Last Synced: 2025-12-13T00:44:45.482Z (about 2 months ago)
- Topics: 1d, data-analysis, data-viz, python, visualization
- Language: Python
- Size: 15.8 MB
- Stars: 14
- Watchers: 5
- Forks: 6
- Open Issues: 30
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PyDV
A 1D graphics and data analysis tool, heavily based on the ULTRA plotting tool.
## PyDV Importable Interface Module ###
You can now call most of PyDV's functionality from within a Python script. Below is an example of how to do this.
### Most Current
```
import sys
sys.path.append("/usr/gapps/pydv/current")
import pydvpy
curves = list()
curves.append(pydvpy.span(1,10,6))
pydvpy.save('myFile.txt', curves)
```
### PyPi or WEAVE Environment
```
from pydv import pydvpy
curves = list()
curves.append(pydvpy.span(1,10,6))
pydvpy.save('myFile.txt', curves)
```
# Documentation
[PyDV Users Manual](https://pydv.readthedocs.io/en/latest/) [](https://pydv.readthedocs.io/en/latest/?badge=latest)
# License
PyDV is distributed under the terms of the [BSD-3 License](LICENSE)
All new contributions must be made under the [BSD-3 License](LICENSE)
See [LICENSE](LICENSE) for details.
LLNL-CODE-507071