about summary refs log tree commit diff
path: root/src/python/draw.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/python/draw.py')
-rw-r--r--src/python/draw.py20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/python/draw.py b/src/python/draw.py
deleted file mode 100644
index e672a76..0000000
--- a/src/python/draw.py
+++ /dev/null
@@ -1,20 +0,0 @@
-import matplotlib.pyplot as plt
-
-listx = []
-listy = []
-
-with open("testFile.csv") as f:
-    data = f.readlines()
-
-    print(data[1:1000])
-
-    for i in range(0, 1000):
-        listx.append(data[i].split(", ")[0])
-
-
-
-# for value in listx:
-#     print(value, end="\n")
-
-plt.plot(listx)
-plt.show()