gpt4 book ai didi

python - xlabel、ylabel 不工作。 'str' 对象不可调用

转载 作者:行者123 更新时间:2023-12-05 08:15:26 25 4
gpt4 key购买 nike

我正在尝试给我的轴标签,但由于语法错误,它们不会显示。这是我的代码。

file = 'SAW data omgekeerd goed.csv'
data = pd.read_csv(file, sep = ';', parse_dates= True, index_col = 0, dayfirst = True)

plt.plot(data['0.005 (B4.01) Studielandschap'])
plt.xlabel('Month')
plt.ylabel('Value')
plt.show()

File "C:/Users/steven/Documents/BIM/Minor Data Science/Outlier detection SAW/Anomaly detection 0.1.py", line 24, in plt.xlabel('Month') TypeError: 'str' object is not callable

最佳答案

您在此之前是否执行过plt.xlabel='month'?这将导致更改导入的函数,从而导致类型错误。重启运行,应该没问题。

编辑:如果由于某种原因您不想重新启动。您可以通过

重新加载模块
from importlib import reload
matplotlib=reload(matplotlib)

如果不是 3.4+,请使用 imp 而不是 importlib

关于python - xlabel、ylabel 不工作。 'str' 对象不可调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47201842/

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