我用以下代码绘制了以下图表。我想在所有构图上创建一条水平的红色虚线,以突出显示200以上的所有点,但是当我运行此
plt.axhline(200, ls='--', linewidth=3, color='red')
我只在最后一个情节中得到这条线。我猜我需要遍历所有情节,但是我不确定该怎么做。感谢您的帮助。
g = sns.relplot(x='hour', y="n",
col="w_day", hue="Zone",
kind="scatter", ci=95, data=df_1, col_order=col_order)
axes = g.axes.flatten()
axes[0].set_title("Monday")
axes[1].set_title("Tuesday")
axes[2].set_title("Wednesday")
axes[3].set_title("Thursday")
axes[4].set_title("Friday")
axes[5].set_title("Saturday")
axes[6].set_title("Sunday")
axes[0].set_ylabel("Hourly N")
for ax in axes:
ax.set_xlabel("Hour")
g.fig.suptitle('',
weight='semibold',
y= 1.06,
size='x-large')
plt.axhline(200, ls='--', linewidth=3, color='red')
plt.margins(x=0)
plt.subplots_adjust(hspace=0, wspace=0)
答案 0 :(得分:3)
for ax in axes:
ax.axhline(200, ls='--', linewidth=3, color='red')