diff options
author | Paul Garlick <pgarlick@tourbillion-technology.com> | 2021-12-20 13:07:06 +0000 |
---|---|---|
committer | Paul Garlick <pgarlick@tourbillion-technology.com> | 2021-12-20 13:07:06 +0000 |
commit | 8c55c82eff9caf89a39e789de2d585efde3478a4 (patch) | |
tree | f94b0c98b032380472f6c22e132971db62ca2b03 /fullswof-utils | |
parent | 3635b05eb67217a24ccb40f92723d728e464d592 (diff) | |
download | fullSWOF-utils-8c55c82eff9caf89a39e789de2d585efde3478a4.tar.gz |
specificPoints.py: Use descriptive plot labels.
* fullswof-utils/specificPoints.py: Edit labels.
Diffstat (limited to 'fullswof-utils')
-rwxr-xr-x | fullswof-utils/specificPoints.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fullswof-utils/specificPoints.py b/fullswof-utils/specificPoints.py index eb96eb7..03bdfe7 100755 --- a/fullswof-utils/specificPoints.py +++ b/fullswof-utils/specificPoints.py @@ -10,8 +10,8 @@ def detach_display(): 'hu_specific_points.dat', delimiter='\t', unpack=True) fig, ax = plt.subplots() plt.plot(t,h, label='elevation') - plt.xlabel('t / s') - plt.ylabel('h / m') + plt.xlabel('time / s') + plt.ylabel('water height / m') ax.yaxis.set_minor_locator(MultipleLocator(0.2)) plt.grid(True, which='minor') plt.show() |