8 列で構成される単純なテキスト ファイルがあり、loadtxt 関数で読み取ります。x 軸 column6-column7 と y 軸 column7-column8 としてプロットしたいので、このコマンドを入力します
>>> pl.plot(np.subtract(data2[:,6], data2[:7]), np.subtract(data2[:,7], data2[:,8]))
and it gave this error
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ValueError: operands could not be broadcast together with shapes (59427) (7,9)
何が問題ですか?そしてそれを行う方法は?