我需要有关运行线图的帮助。我已经使用pip和conda更新了conda和Seaborn。
有关如何解决此问题的任何建议?我正在使用带有Python 3的Jupyter。
AttributeError Traceback (most recent call last)
<ipython-input-4-5086873db64c> in <module>()
----> 1 rawx = sns.relplot(x="Timestamp",y="X0",kind="line",data=raw)
AttributeError: module 'seaborn' has no attribute 'relplot'
答案 0 :(得分:0)
抱歉,根据您提供的内容,只能考虑使用以下命令检查seaborn的版本:
pip freeze | grep seaborn
pip3 freeze | grep seaborn
并在conda环境中尝试以下操作:
pip3 install seaborn==0.9.0
或者:
conda install seaborn==0.9.0
,并确保您实际上正在加载具有更新的seaborn的正确版本的Python。