gpt4 book ai didi

python - AttributeError:模块 'matplotlib' 没有属性 'xlabel'

转载 作者:行者123 更新时间:2023-12-05 00:55:40 25 4
gpt4 key购买 nike

我的代码是:

import matplotlib as plt 
sns.distplot(CMSU['Spending'], kde = False)
plt.xlabel("Spending", size=15)
plt.ylabel("Probablity", size=15)
plt.title("Distribution for the variable - Spending", size=18);

我收到错误:

AttributeError                            Traceback (most recent call last)
<ipython-input-32-1c6eb744a592> in <module>
1 sns.distplot(CMSU['Spending'], kde = False)
----> 2 plt.xlabel("Spending", size=15)
3 plt.ylabel("Probablity", size=15)
4 plt.title("Distribution for the variable - Spending", size=18);

AttributeError: module 'matplotlib' has no attribute 'xlabel'

可能会出什么问题?

最佳答案

您的 import 语句是错误的。这些方法属于 pyplot。即,您应该像这样导入它:

import matplotlib.pyplot as plt

关于python - AttributeError:模块 'matplotlib' 没有属性 'xlabel',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63677950/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com