Seaborn Jointplot错误:FutureWarning:不建议将非元组序列用于多维索引

时间:2018-11-12 03:03:42

标签: python dataframe plot runtime-error seaborn

我正在尝试为以下客户数据数据框创建一个JointPlot。我需要Jointplot在Y轴上花费每年的金额,在X轴上花费App的时间。

数据框看起来像这样

Fig 1: Customer Data Dataframe

我使用以下代码创建联合图,但出现以下错误。

Fig 2: Seaborn command to create Jointplot of Yearly amout spent to Time spent and error

我期望下面的Jointplot(而不是错误)感谢您对解决此问题的帮助!

Fig 3: Seaborn command should create the following Jointplot instead of above error

1 个答案:

答案 0 :(得分:0)

谢谢您在评论中发布的答案。ImportanceOfBeignEarnest。

这是一个疏忽-我忘记了%matplotlib内联行

现在顶部包括:

import matplotlib.pyplot as plt
import seaborn as sns
%matplotlib inline

警告仍然会出现,但现在会出现该情节。