所以我正在使用rcParams自定义一些图,并且以某种方式破坏了sns.regplot回归线函数
其中吹出的橙色是应该在回归线上的“置信区间”。
据我所知,从视觉检查和其他绘图来看,数据都很好(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)
帮助!