diff --git a/exercises/exerciseA/plot.py b/exercises/exerciseA/plot.py index 4130224..168b32e 100755 --- a/exercises/exerciseA/plot.py +++ b/exercises/exerciseA/plot.py @@ -14,7 +14,11 @@ timings = np.array(timings) print('This is the data I loaded: threads =', threads, ', timings =',timings) -fig, axs = plt.subplots() +# fig, axs = plt.subplots() +plt.scatter(threads, timings) +plt.xlabel("Number of threads") +plt.ylabel("Time in sec") +plt.title("Number of Threads vs. Time") # CREATE YOUR PLOT HERE # Remember to label your axis