_subplots.AxesSubplot at 0x22d8d8db518>
lmplot()绘制回归关系图
lmplot是一种集合基础绘图与基于数据建立回归模型的绘图方法。...g = sns.lmplot(x="total_bill", y="tip", hue="smoker", data=tips,palette="Set1")
#研究在不同星期下,消费总额与消费的回归关系...="Defense", y="Attack",data=pokemon,col="Generation", hue="Generation",col_wrap=3, size=3,order=2)
seaborn.axisgrid.FacetGrid...at 0x22d8bce32e8>
#继续在同一图中观察不同代的sp.Atk,Sp.Def线性关系
sns.lmplot(x="Sp....Def", data=pokemon, hue='Generation', size=5,order=1)
seaborn.axisgrid.FacetGrid at 0x22d8be4b5f8>
参考