我正在尝试在经典titanic
数据(尤其是train.csv
)的变量之间创建成对散点图。这是代码:
#scatterplot
sns.set()
sns.pairplot(df, dropna=True)
plt.show()
但这显示了以下错误:
ValueError: max must be larger than min in range parameter.
答案 0 :(得分:0)
您的数据框中可能有NaN。这是您尝试使用包含NaN的数组创建散点图和直方图时会看到的错误。