matplotlib 中的 get_example_data 函数在哪里? 它似乎丢失了,但在示例/教程中
在这里查看本教程: 链接文本 它引用 matplotlib.get_example_data( 'goog.npy')。 运行此命令时出现错误,而且在使用 Spotlight 搜索时,我什至无法在 matplot lib 的 macosx 安装中找到 mpl-data/ 文件夹。 知道这个函数现在叫什么吗?
Looking at this tutorial here: link text it references matplotlib.get_example_data('goog.npy'). I get an error when I run this, and furthermore I can't even find the mpl-data/ folder in my macosx installation of matplot lib when searching using Spotlight. Any idea what this function is now called?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它是在 __init__.py 中定义的(大约第 490 行),如果这就是您所要求的。
——马库斯
Q
mpl_data/
目录也在那里(它们都在顶级目录中)。 您确定安装良好/完整吗?It's defined in
__init__.py
(around line 490), if that's what you're asking.-- MarkusQ
P.S. The
mpl_data/
directory is there too (both of them are in the top level directory). Are you sure you've got a good / complete installation?我刚刚在 Ubuntu 10.04(Python 2.6.5,MPL 0.99.1.1)上遇到了类似(相同?)的问题。
没有
get_sample_data
,但是/usr/lib/pymodules/python2.6/matplotlib/__init__.py
中没有get_example_data
真的有效。 目录/usr/local/lib/python2.6/site-packages
为空。作为解决方法,我直接下载了文件 goog.npy 并替换了加载数据(可能类似)
I just had a similar (the same?) problem for Ubuntu 10.04 (Python 2.6.5, MPL 0.99.1.1).
There was no
get_sample_data
, however aget_example_data
in/usr/lib/pymodules/python2.6/matplotlib/__init__.py
which didn't really work. The directory/usr/local/lib/python2.6/site-packages
was empty.As a workaround, I downloaded the file goog.npy directly and replaced the loading of the data with (probably similar)