diff options
author | Holden Rohrer <hr@hrhr.dev> | 2021-01-10 21:15:58 -0500 |
---|---|---|
committer | Holden Rohrer <hr@hrhr.dev> | 2021-01-10 21:15:58 -0500 |
commit | 50ad3052a0b0c2245b6f3f481f12322391737aa5 (patch) | |
tree | 30890317d114c876e6c09565b234fa307a103815 /py/img.py | |
parent | 2fb9d493a9c08d1e75e51eee2740fc79ff407717 (diff) |
working on new graphs
Diffstat (limited to 'py/img.py')
-rw-r--r-- | py/img.py | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,4 +1,9 @@ from data import trials for trial in trials: - trial.plot(save=True); + trial.plot(save=True) + +from data2 import trials + +for trial in trials: + trial.plot(save=True) |