From 901fa44fed1c329fd123c6d99a15bc7be5443e41 Mon Sep 17 00:00:00 2001
From: couturie <you@example.com>
Date: Sun, 22 Jul 2018 17:01:59 +0200
Subject: [PATCH] add execution_opi.py

---
 OneRoundIoT/execution_opi.py | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 OneRoundIoT/execution_opi.py

diff --git a/OneRoundIoT/execution_opi.py b/OneRoundIoT/execution_opi.py
new file mode 100644
index 0000000..e782204
--- /dev/null
+++ b/OneRoundIoT/execution_opi.py
@@ -0,0 +1,14 @@
+import matplotlib.pyplot as plt
+import numpy as np
+import pandas as pd
+
+
+open=pd.read_csv("execution_openssl_rpi3.txt",sep='\t',header=None)
+one=pd.read_csv("execution_oneround_rpi3.txt",sep='\t',header=None)
+open.drop(open.columns[[5]], axis=1, inplace=True)
+one.drop(one.columns[[5]], axis=1, inplace=True)
+print(a)
+
+#plt.plot([1,2,3,4])
+#plt.ylabel('some numbers')
+#plt.show()
-- 
2.39.5