当前位置:网站首页>报错:AttributeError: module ‘matplotlib’ has no attribute ‘figure’
报错:AttributeError: module ‘matplotlib’ has no attribute ‘figure’
2022-08-01 04:36:00 【hi_1900】
报错:AttributeError: module ‘matplotlib’ has no attribute ‘figure’
修改前:
import matplotlib as plt
plt.figure()
plt.imshow(trainImages[10])
plt.colorbar()
plt.grid(False)
修改为:import matplotlib.pyplot as plt
修改后:
import matplotlib.pyplot as plt
plt.figure()
plt.imshow(trainImages[10])
plt.colorbar()
plt.grid(False)
边栏推荐
- 云服务器下载安装mongo数据库并远程连接详细图文版本(全)
- PMP子过程定义总结
- 这里有110+公开的专业数据集
- 【云原生之kubernetes实战】kubernetes集群的检测工具——popeye
- August 22 Promotion Ambassador Extra Reward Rules
- Game Theory (Depu) and Sun Tzu's Art of War (42/100)
- 认真对待每一个时刻
- 请问表格储存中用sql只能查询到主键列,ots sql非主键不支持吗?
- Flutter Tutorial 02 Introduction to Flutter Desktop Program Development Tutorial Run hello world (tutorial includes source code)
- 故乡的素描画
猜你喜欢
随机推荐
【愚公系列】2022年07月 Go教学课程 024-函数
干货!如何使用仪表构造SRv6-TE性能测试环境
High Numbers | 【Re-integration】Line Area Score 880 Examples
win10 fixed local IP
Summary of mobile page optimization in seconds
This article takes you to understand the past and present of Mimir, Grafana's latest open source project
基于Arduino制作非接触式测温仪
PMP 项目沟通管理
基于STM32设计的UNO卡牌游戏(双人、多人对战)
Progressive Reconstruction of Visual Structure for Image Inpainting 论文笔记
leetcode:126. Word Solitaire II
PMP 项目资源管理
律师解读 | 枪炮还是玫瑰?从大厂之争谈元宇宙互操作性
软件测试周刊(第82期):其实所有纠结做选择的人心里早就有了答案,咨询只是想得到内心所倾向的选择。
TypeScript简化运行之ts-node
深圳某游戏研发公司给每个工位都装监控,网友:堪比坐牢!
项目风险管理必备内容总结
【kali-信息收集】枚举——DNS枚举:DNSenum、fierce
Flutter Tutorial 01 Configure the environment and run the demo program (tutorial includes source code)
How to write a high-quality digital good article recommendation









