From 8c55c82eff9caf89a39e789de2d585efde3478a4 Mon Sep 17 00:00:00 2001 From: Paul Garlick Date: Mon, 20 Dec 2021 13:07:06 +0000 Subject: specificPoints.py: Use descriptive plot labels. * fullswof-utils/specificPoints.py: Edit labels. --- fullswof-utils/specificPoints.py | 4 ++-- 1 file 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() -- cgit