plot threads vs timing data

This commit is contained in:
ASPP Student 2024-08-30 12:18:41 +03:00
parent f2e462842e
commit 8e3534cfe5

View file

@ -14,10 +14,13 @@ timings = np.array(timings)
print('This is the data I loaded: threads =', threads, ', timings =',timings)
fig, axs = plt.subplots()
fig, ax = plt.subplots(1, 1)
# CREATE YOUR PLOT HERE
# Remember to label your axis
# Feel free to make it pretty
plt.subplot
ax.scatter(threads, timings)
plt.show()
plt.savefig('threads_v_timings.png', dpi=300)