import seaborn as sns
import matplotlib.pyplot as plt

sns.corrplot(rets,annot=False,diag_names=False)

调用上面的函数后出现此错误...不知道发生了什么
AttributeError                            Traceback (most recent call last)
<ipython-input-32-33914bef0513> in <module>()
----> 1 sns.corrplot(rets,annot=False,diag_names=False)

AttributeError: 'module' object has no attribute 'corrplot'

最佳答案

seat版本v0.6中不推荐使用corrplot函数:https://seaborn.github.io/whatsnew.html#other-additions-and-changes:



请注意,该函数实际上仍然存在于seaborn代码库中,但是您必须直接从seaborn.linearmodels导入它,并且会收到一条警告,指出该函数可能会在将来的版本中删除。

关于python - “模块”对象没有属性 'corrplot',我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40059642/

10-11 03:56