无法找到完整的 Yhat 文档来回答这个问题,使用 ggplot 的 R 版本我试图迭代回到解决方案。
通常用文本注释 Python ggplot 图的正确语法是什么,更具体地说,使用来自 Statsmodels 的变量(除了下面这个代码块的最后一行之外,一切都有效)?
from ggplot import *
ggplot(aes(x='rundiff', y='winpct'), data=mlb_df) +\
geom_point() + geom_text(aes(label='team'),hjust=0, vjust=0, size=10) +\
stat_smooth(method='lm', color='blue') +\
ggtitle('Contenders vs Pretenders') +\
ggannotate('text', x = 4, y = 7, label = 'R^2')
谢谢。