Seaborn regplot回归线断开

时间:2018-07-16 08:01:05

标签: python matplotlib anaconda jupyter-notebook seaborn

所以我正在使用rcParams自定义一些图,并且以某种方式破坏了sns.regplot回归线函数

过去的情节看起来像这样... enter image description here

...现在看起来像这样... enter image description here

其中吹出的橙色是应该在回归线上的“置信区间”。

据我所知,从视觉检查和其他绘图来看,数据都很好(matplotlib仍然可以正常工作)。其他regplot调用也同样被破坏。

此图的代码为:

fig = plt.figure(figsize=(14,6))
plt.suptitle(t='Movement Between Consecutive Weeks', size=20)
sns.regplot(
    data=df, x='delta_2', y='delta_1', line_kws={'color':'orange'},
    scatter_kws={'color':'#5D2B97','alpha':0.5})
plt.xticks(size=14)
plt.yticks(size=14)
plt.xlabel(s='Chart Position Change, Week -2 to Week -1', size=14)
plt.ylabel(s='Chart Position Change, Week -1 to Current Week', size=14)
plt.ylim(-50,40)

我添加的唯一代码(在笔记本中的其他地方)是

mpl.rcParams['axes.facecolor'] = '#F0F0F0'
mpl.rcParams['font.family'] = "Arial"
mpl.rcParams['figure.facecolor'] = 'white'

什么都没有!

卸载并重新安装seaborn并没有帮助!都没有使用plt.rcParams.update(plt.rcParamsDefault)

重置默认的rcParams

帮助!

0 个答案:

没有答案