about summary refs log tree commit diff
path: root/src/python/draw/draw.py
diff options
context:
space:
mode:
authorhanemile <emile.hansmaennel@gmail.com>2018-03-19 20:47:13 +0100
committerhanemile <emile.hansmaennel@gmail.com>2018-03-19 20:47:13 +0100
commitd0f19b8bc7ab11449cea028106504cacecd94f66 (patch)
tree8ce0c9298694554a46545731c949fb18332669cb /src/python/draw/draw.py
parent996e5529f566d7c64763c47348fc68fae51ef6a4 (diff)
cleaned up
Diffstat (limited to 'src/python/draw/draw.py')
-rw-r--r--src/python/draw/draw.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/python/draw/draw.py b/src/python/draw/draw.py
new file mode 100644
index 0000000..e672a76
--- /dev/null
+++ b/src/python/draw/draw.py
@@ -0,0 +1,20 @@
+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()