sns.regplot在回归线y轴上设置限制

时间:2020-07-30 20:26:29

标签: matplotlib data-science seaborn eda

对于给定的海洋图,我们如何将回归线的y轴限制设置为5以内。
评级永远不会超过5。有没有办法截断/剪切它? sns.regplot(x =“评论”,y =“评分”,data = df);


enter image description here


2 个答案:

答案 0 :(得分:1)

B

enter image description here

答案 1 :(得分:0)

sns.regplot(x="Reviews", y="Rating", data=df)
sns.plt.ylim(0, y_lim)

根据您的要求更改y_lim的值