You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First, thanks for fixing the problem and updating the package to 1.2.5.
When I use the newest version, I run into the following result. it seems to make no sense.
data = {'A':[2,3,4,5,6],'B':[10,11,12,13,14]} df = pd.DataFrame(data) rolling = ols.RollingOLS(y=df['B'], x=df['A'], window=3,has_const=False,use_const=False) rolling.rsq rolling.rsq_adj
the result is array([938.58741603, 868.32596507, 801.06451411])
array([-624.05827735, -577.21731005, -532.37634274])
it should in the interval [0,1]
The text was updated successfully, but these errors were encountered:
First, thanks for fixing the problem and updating the package to 1.2.5.
When I use the newest version, I run into the following result. it seems to make no sense.
data = {'A':[2,3,4,5,6],'B':[10,11,12,13,14]}
df = pd.DataFrame(data)
rolling = ols.RollingOLS(y=df['B'], x=df['A'], window=3,has_const=False,use_const=False)
rolling.rsq
rolling.rsq_adj
the result is array([938.58741603, 868.32596507, 801.06451411])
array([-624.05827735, -577.21731005, -532.37634274])
it should in the interval [0,1]
The text was updated successfully, but these errors were encountered: