瀏覽代碼

graph aesthetics changes

tarfeef101 6 年之前
父節點
當前提交
4f675b31c1
共有 1 個文件被更改,包括 6 次插入6 次删除
  1. 6 6
      a2/tsp_local.py

+ 6 - 6
a2/tsp_local.py

@@ -515,8 +515,8 @@ def reinhold_messner_graph():
         for i in range(0, 3):
             for j in range(0, 2):
                 axes[i][j].plot(range(1, 16), solution_times[i][j], color = 'b')
-                axes[i][j].set_xlabel("Problem Instance w/ " + str(i + 14) + " cities")
-                axes[i][j].set_ylabel("Time Taken", color = 'b')
+                axes[i][j].set_xlabel("Problem Instance " + str(j + 1) +  " w/ " + str(i + 14) + " cities")
+                axes[i][j].set_ylabel("Time Taken (s)", color = 'b')
                 axis_twin = axes[i][j].twinx()
                 axis_twin.plot(range(1, 16), solution_scores[i][j], color = 'r')
                 axis_twin.set_ylabel("Solution Quality", color = 'r')
@@ -577,9 +577,9 @@ def beck_weathers_graph():
         for i in range(0, 3):
             for j in range(0, 2):
                 axes[i][j].plot(range(1, 4), solution_times[i][j], color = 'b')
-                axes[i][j].set_title("Problem Instance w/ " + str(i + 14) + " cities")
-                axes[i][j].set_xlabel("Annealing Schedule " + str(j + 1))
-                axes[i][j].set_ylabel("Time Taken", color = 'b')
+                axes[i][j].set_title("Problem Instance " + str(j + 1) +  " w/ " + str(i + 14) + " cities")
+                axes[i][j].set_xlabel("Annealing Schedule")
+                axes[i][j].set_ylabel("Time Taken (s)", color = 'b')
                 axis_twin = axes[i][j].twinx()
                 axis_twin.plot(range(1, 4), solution_scores[i][j], color = 'r')
                 axis_twin.set_ylabel("Solution Quality", color = 'r')
@@ -587,7 +587,7 @@ def beck_weathers_graph():
                 #axis_twin.legend()
 
         plt.tight_layout()
-        plt.subplots_adjust(top=0.92)
+        plt.subplots_adjust(top=0.85)
         pdf.savefig()
         plt.close()