Plotly:如何在 plotly express 中找到趋势线的系数?

Plotly: How to find coefficient of trendline in plotly express?

plotly express怎么求趋势线的系数?

例如,我使用下面的代码绘制趋势线,但现在我想知道系数。

import plotly.express as px

px.scatter(df, x='x_data', y='y_data', trendline="ols")

这里需要看一下plotlydoc in plotly and statsmodels一个。我认为应该修复 plotly 示例中的示例。不管怎样

import plotly.express as px

df = px.data.tips()
fig = px.scatter(df, x="total_bill", y="tip", trendline="ols")
fig.show()

对于结果,您应该 运行

results = px.get_trendline_results(fig)
results = results.iloc[0]["px_fit_results"].summary()
print(results)
                            OLS Regression Results                            
==============================================================================
Dep. Variable:                      y   R-squared:                       0.457
Model:                            OLS   Adj. R-squared:                  0.454
Method:                 Least Squares   F-statistic:                     203.4
Date:                Mon, 10 Aug 2020   Prob (F-statistic):           6.69e-34
Time:                        12:28:52   Log-Likelihood:                -350.54
No. Observations:                 244   AIC:                             705.1
Df Residuals:                     242   BIC:                             712.1
Df Model:                           1                                         
Covariance Type:            nonrobust                                         
==============================================================================
                 coef    std err          t      P>|t|      [0.025      0.975]
------------------------------------------------------------------------------
const          0.9203      0.160      5.761      0.000       0.606       1.235
x1             0.1050      0.007     14.260      0.000       0.091       0.120
==============================================================================
Omnibus:                       20.185   Durbin-Watson:                   1.811
Prob(Omnibus):                  0.000   Jarque-Bera (JB):               37.750
Skew:                           0.443   Prob(JB):                     6.35e-09
Kurtosis:                       4.711   Cond. No.                         53.0
==============================================================================

而对于系数

results.iloc[0]["px_fit_results"].params
array([0.92026961, 0.10502452])

其中第一个是常量,第二个是斜率。