Skip to content

Commit ce14b18

Browse files
committed
Fix axis label error
1 parent 11fcbf4 commit ce14b18

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/PlotGraphs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,8 @@ def workingAnimation():
149149
plt.plot(
150150
alteredDestinationTimes[0], alteredDestinationTimes[1], color="#22AEE7"
151151
)
152-
plt.xlabel("No. of Actors at Destination")
153-
plt.ylabel("Time (ms)")
152+
plt.xlabel("Time (ms)")
153+
plt.ylabel("No. of Actors at Destination")
154154
plt.title("Actor Arrival Times at Destination")
155155
plt.savefig("../output/images/destinationTimesGraph.png")
156156

0 commit comments

Comments
 (0)