绘制变量之间的关系-Python

时间:2018-12-04 22:23:04

标签: python plot seaborn

我正在尝试在经典titanic数据(尤其是train.csv)的变量之间创建成对散点图。这是代码:

#scatterplot
sns.set()
sns.pairplot(df, dropna=True)
plt.show()

但这显示了以下错误:

ValueError: max must be larger than min in range parameter.

1 个答案:

答案 0 :(得分:0)

您的数据框中可能有NaN。这是您尝试使用包含NaN的数组创建散点图和直方图时会看到的错误。