Skip to content
Snippets Groups Projects
Commit d06c0590 authored by Daniel Maier's avatar Daniel Maier
Browse files

remove plot.py

parent 3fad0c7c
No related branches found
No related tags found
No related merge requests found
import pandas as pd
import matplotlib.pyplot as plt
data = pd.read_csv("results", header=None)
data.columns = ('statement', 'level', 'name', 'time', 'error')
plt.plot(data.error, data.time, '.')
plt.xlabel('error')
plt.ylabel('time')
plt.show()
while True: pass
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment