plot
This commit is contained in:
parent
8635fb282b
commit
83160aefac
1 changed files with 5 additions and 0 deletions
|
@ -12,10 +12,15 @@ for file in os.listdir('timings'):
|
|||
threads = np.array(threads)
|
||||
timings = np.array(timings)
|
||||
|
||||
indexes = np.argsort(threads)
|
||||
threads= threads[indexes]
|
||||
timings = timings[indexes]
|
||||
print('This is the data I loaded: threads =', threads, ', timings =',timings)
|
||||
|
||||
fig, axs = plt.subplots()
|
||||
|
||||
plt.scatter(threads, timings)
|
||||
plt.plot(threads, timings)
|
||||
# CREATE YOUR PLOT HERE
|
||||
# Remember to label your axis
|
||||
# Feel free to make it pretty
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue