栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

如何删除Matplotlib图中的线

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

如何删除Matplotlib图中的线

我正在展示

lines.pop(0)
l.remove()
和结合
del l
使用的技巧。

from matplotlib import pyplotimport numpy, weakrefa = numpy.arange(int(1e3))fig = pyplot.Figure()ax  = fig.add_subplot(1, 1, 1)lines = ax.plot(a)l = lines.pop(0)wl = weakref.ref(l)  # create a weak reference to see if references still exist#to this objectprint wl  # not deadl.remove()print wl  # not deaddel lprint wl  # dead  (remove either of the steps above and this is still live)

我检查了您的大型数据集,并在系统监视器上也确认了内存的释放。

当然,更简单的方法(当不进行故障排除时)是从列表中弹出它并

remove
在不创建硬引用的情况下调用该行对象:

lines.pop(0).remove()


转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/624060.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号