import numpy as np
import matplotlib.pyplot as plt
x = np.loadtxt(‘a1.dat’, usecols=2) # 2列目
y = np.loadtxt(‘a1.dat’, usecols=3) # 3列目
fig = plt.figure()
ax = fig.add_subplot(111)
ax.set_title(‘Compare two methods’, fontsize=20)
ax.set_xlabel(‘Method1’, fontsize=18)
ax.set_ylabel(‘Method2’, fontsize=18)
plt.scatter(x, y, s=600, c=”pink”, alpha=0.5, linewidths=”2″, edgecolors=”red”)
plt.savefig(‘compare.png’) # Save as an image
plt.show() # show on your display
図のあたりは、他のページを参照したので、これが良いのかわかりませんが、とりあえず、それらしきものは作れます。見た目は、scatterの後の数字やらをいじくればなんとかなります。