This commit is contained in:
ASPP Student 2025-09-26 12:48:41 +03:00
parent 8635fb282b
commit 83160aefac

View file

@ -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