3

在 plotnine --using 中很容易获得数据的线性最佳拟合stat_smooth(method="gls")。但是,我不知道如何将系数导出到最佳拟合线或 R2 值。R 中的 Ggplot 具有stat_regline_equation()执行此操作的功能,但我在 plotnine 中找不到类似的工具。

目前,我正在使用statsmodels.formula.api.ols来获取这些值,但在 plotnine 中必须有更好的方法。

PS:我是所有编码的新手。

4

1 回答 1

2

我最终使用了以下代码;不是 PlotNine,但很容易实现。

import plotnine as p9
from scipy import stats
from plotnine.data import mtcars as df

#calculate best fit line
slope, intercept, r_value, p_value, std_err = stats.linregress(df['wt'],df['mpg'])
df['fit']=df.wt*slope+intercept
#format text 
txt= 'y = {:4.2e} x + {:4.2E};   R^2= {:2.2f}'.format(slope, intercept, r_value*r_value)
#create plot. The 'factor' is a nice trick to force a discrete color scale
plot=(p9.ggplot(data=df, mapping= p9.aes('wt','mpg', color = 'factor(gear)'))
    + p9.geom_point(p9.aes())
    + p9.xlab('Wt')+ p9.ylab(r'MPG')
    + p9.geom_line(p9.aes(x='wt', y='fit'), color='black')
    + p9.annotate('text', x= 3, y = 35, label = txt))
#for some reason, I have to print my plot 
print(plot)
于 2020-04-13T19:36:09.247 回答