如何在seaborn图中将x轴起点更改为“ 0”

时间:2019-06-07 14:21:08

标签: python seaborn

我正在使用seaborn绘制联合图,如何将x轴起点设置为'0'。

ad_data=pd.read_csv('advertising.csv')
sns.jointplot(y='Area Income',x='Age',data=ad_data)

enter image description here

1 个答案:

答案 0 :(得分:0)

我认识到joinplot具有一个内置参数“ xlim”,可以直接将其传递给函数参数。

sns.jointplot(y='Area Income',x='Age',data=ad_data,xlim=(0,70))

Output image