データ ポイント間のこれらの線が消えるのに問題があります。エラーバーを追加しようとするたびに、これが行われるようです。グラフを見ると、1 つ目はエラーバーの線がなく、2 つ目はあります。これは pyplot errorbar の通常の副作用ですか? なぜこれを行うのか、またはそれをなくす方法を知っている人はいますか?
plt.figure()
plt.scatter(x, y, label = 'blah')
plt.errorbar(x, y, yerr = None, xerr = x_err)
plt.plot(x, f) #this is a line of best fit