如何 为 线性 模型 摘要 输出 的 特定 元素 编制 索引 - Pandas

ogsagwnx  于 2022-11-20  发布在  其他
关注(0)|答案(1)|浏览(119)

我有以下线性模型输出。
我想索引一个特定的值,只打印R平方值(0.028),但不知道如何做。
会如此感激你的帮助!

resultmodeldistancevariation2sleepsummary

OLS Regression Results
Dep. Variable:  distance    R-squared:  0.028
Model:  OLS Adj. R-squared: 0.016
Method: Least Squares   F-statistic:    2.338
Date:   Fri, 18 Nov 2022    Prob (F-statistic): 0.00773
Time:   10:06:14    Log-Likelihood: -1274.1
No. Observations:   907 AIC:    2572.
Df Residuals:   895 BIC:    2630.
Df Model:   11      
Covariance Type:    nonrobust

我会非常感激你的帮助!

iq3niunx

iq3niunx1#

我通过添加以下代码解决了这个问题:

newerresults = resultmodeldistancevariation2sleepsummary.tables[0]
newerdata = pd.DataFrame(newerresults)
print(newerdata.iloc[0,3])

转换为表-然后转换为 Dataframe -然后转换为索引:)

相关问题