19
我如何計算Python中LOWESS迴歸的置信區間?我想將這些作爲陰影區域添加到使用下面的代碼創建的LOESS plot(其他軟件包比statsmodels也好)。Python中LOWESS的置信區間
import numpy as np
import pylab as plt
import statsmodels.api as sm
x = np.linspace(0,2*np.pi,100)
y = np.sin(x) + np.random.random(100) * 0.2
lowess = sm.nonparametric.lowess(y, x, frac=0.1)
plt.plot(x, y, '+')
plt.plot(lowess[:, 0], lowess[:, 1])
plt.show()
我已經添加與來自webblog Serious Stats(它是使用ggplot創建在R)以下的置信區間的示例曲線圖。
statsmodels LOWESS不計算標準誤差。 – user333700
更好的理由提出這個問題...... – Thriveth
這是一個更適合http://stats.stackexchange.com/的問題 –