ref:
https://stackoverflow.com/questions/24120023/strange-error-with-matplotlib-axes-labels
画图的时候手欠写成了:
plt.xlabel = 'x'
实际上应该是
plt.xlabel('x')
因为已经将plt.xlable 赋值为了 ‘x‘ 字符串,所以自然就’str’ object is not callable
区间预测 | Matlab实现QRCNN-BiLSTM-Attention分位数回归卷积双向长短期记忆网络注意力机制时序区间预测
阅读 5
2024-06-03
ref:
https://stackoverflow.com/questions/24120023/strange-error-with-matplotlib-axes-labels
画图的时候手欠写成了:
plt.xlabel = 'x'
实际上应该是
plt.xlabel('x')
因为已经将plt.xlable 赋值为了 ‘x‘ 字符串,所以自然就’str’ object is not callable
相关推荐
精彩评论(0)