diff options
author | Holden Rohrer <hr@hrhr.dev> | 2020-01-12 14:23:00 -0500 |
---|---|---|
committer | Holden Rohrer <hr@hrhr.dev> | 2020-01-13 12:45:32 -0500 |
commit | e0f82d6593b64819fd03cabead1d7549c6af22a7 (patch) | |
tree | dcb06dbca75ac9757fbb9985838d4bbefe6eda28 | |
parent | 5b04f75b32b2a46c6d4bfc3cc59408977d528532 (diff) |
Removed data.py print that created unnecessary noise
-rw-r--r-- | data.py | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -88,7 +88,7 @@ trials = [ Trial(Date(2019, 12, 5), 10, 0, [17, 16], [ Pit([17,4],1.3,3.1), Pit([10,4],1.5,3.1), - Pit([18,9],1.4,2.9), + Pit([16,9],1.4,2.9), ]), Trial(Date(2019, 12, 19), 12, 4, [8,7], [ Pit([4,7],.8,.9), @@ -145,7 +145,6 @@ elif arg == 'depwid': sizes.append(size) depths.append(pit.depth) widths.append(pit.diam) - print(sizes, depths, widths) plt.plot([size-.5 for size in sizes], depths, 'bo', label='depth') plt.plot(sizes, widths, 'ro', label='width') plt.xlabel('Square root of Trial Area (cm)') |