improve plotting code #4

Open
stellave wants to merge 1 commit from stellave/2024-heraklion-parallel-python:main into main
Showing only changes of commit d56095950d - Show all commits

View file

@ -16,8 +16,8 @@ print('This is the data I loaded: threads =', threads, ', timings =',timings)
fig, axs = plt.subplots()
# CREATE YOUR PLOT HERE
# Remember to label your axis
# Feel free to make it pretty
plt.plot(threads, timings, '+')
plt.xlabel('threads')
plt.ylabel('timings')
plt.savefig('threads_v_timings.png', dpi=300)