aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--data.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/data.py b/data.py
index ad06b92..050d4b7 100644
--- a/data.py
+++ b/data.py
@@ -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)')