Я создаю комбо-диаграммы в одном графике, но графики, похоже, перекрываются. Можете ли вы проверить код и помочь с его исправлением. Прикрепленное изображение перекрывающегося графика здесь.
sns.set(style="white", rc={"lines.linewidth": 3})
fig, ax1 = plt.subplots(figsize=(4,4))
ax2 = ax1.twinx()
sns.barplot(x=df_MatchedClaim2['Year'],
y=df_MatchedClaim2['Claim_Count'],
color='#004488',
ax=ax1)
sns.lineplot(x=df_MatchedClaim2['Year'],
y=df_MatchedClaim2['Percentage'],
color="r",
marker="o",
ax=ax2)
plt.show()
![enter image description here](https://i.stack.imgur.com/azLTh.png)