We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
在当前的演示的3D示例中,普遍使用了下式创建轴信息
ax = fig.gca(projection='3d')
目前新版本(我用的) 3.6+可能会遇到 TypeError: 'list' object is not callable 可以调整成下式来避免此问题
TypeError: 'list' object is not callable
ax = plt.axes(projection='3d')
没玩明白node.js (捂脸(先issue一下(逃跑
The text was updated successfully, but these errors were encountered:
No branches or pull requests
在当前的演示的3D示例中,普遍使用了下式创建轴信息
目前新版本(我用的) 3.6+可能会遇到
TypeError: 'list' object is not callable
可以调整成下式来避免此问题
没玩明白node.js (捂脸(先issue一下(逃跑
The text was updated successfully, but these errors were encountered: