diff --git a/plot.py b/plot.py index b520b8a..e7b7fa0 100644 --- a/plot.py +++ b/plot.py @@ -11,7 +11,7 @@ for line in f: build_numbers = np.arange(1, len(accuracy) + 1) -plt.plot(accuracy, build_numbers, marker='o', linestyle='-', color='b') +plt.plot(build_numbers, accuracy, marker='o', linestyle='-', color='b') plt.xlabel('Build Number') plt.ylabel('Accuracy') plt.title('Accuracy Plot')