将 x 和 y 抖动添加到 seaborn 线性图中是否会改变拟合值?

Does adding x and y jitter to a seaborn linear plot change the fit values?

我正在为 python 学习 seaborn,我有一个快速的问题,但我找不到答案。如果我将抖动添加到绘图中,它实际上会改变拟合值(例如 r^2、p 值等)还是只是为了绘图的外观?

比较 sns.lmplot("size", "tip", tips, x_jitter=.15) 来自 sns.lmplot("size", "tip", tips)https://web.stanford.edu/~mwaskom/software/seaborn/tutorial/quantitative_linear_models.html

不,回归是在原始数据上估计的;抖动应用于用于绘制散点图的数据副本。