2024-heraklion-parallel-python/exercises/exerciseA/plot.py

27 lines
661 B
Python
Raw Normal View History

2024-08-29 11:19:39 +02:00
import os
import numpy as np
import matplotlib.pyplot as plt
# IO: This loads the timings for you
threads, timings = [], []
for file in os.listdir('timings'):
with open(f'timings/{file}', 'r') as f:
n, t = f.read().strip().split(',')
threads.append(int(n))
timings.append(float(t))
threads = np.array(threads)
timings = np.array(timings)
print('This is the data I loaded: threads =', threads, ', timings =',timings)
2024-08-30 11:18:41 +02:00
fig, ax = plt.subplots(1, 1)
2024-08-29 11:19:39 +02:00
# CREATE YOUR PLOT HERE
# Remember to label your axis
# Feel free to make it pretty
2024-08-30 11:18:41 +02:00
plt.subplot
ax.scatter(threads, timings)
plt.show()
2024-08-29 11:19:39 +02:00
plt.savefig('threads_v_timings.png', dpi=300)