matplotlib 中的 get_example_data 函数在哪里? 它似乎丢失了,但在示例/教程中

发布于 2024-07-14 12:00:16 字数 297 浏览 3 评论 0原文

在这里查看本教程: 链接文本 它引用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

所有深爱都是秘密 2024-07-21 12:00:16

它是在 __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?

天煞孤星 2024-07-21 12:00:16

我刚刚在 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 并替换了加载数据(可能类似)

with open("goog.npy") as f:
  r = np.load(f).view(np.recarray)

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 a get_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)

with open("goog.npy") as f:
  r = np.load(f).view(np.recarray)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文