可视化数据和聚类

发布于 2024-09-09 00:06:39 字数 1539 浏览 9 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(5

放飞的风筝 2024-09-16 00:06:40

我认为 Weka 可以做到这一点。您可能必须首先将输入文件转换为不同的格式。 Weka 也有一个 API,尽管它是用 Java 编写的,而不是 Python 编写的。

I think Weka can do this. You might have to massage the input file to a different format first. Weka also has an API, though it's in Java, not Python.

故事未完 2024-09-16 00:06:40

您可以使用很多工具来执行此操作。

还有其他提及,但您可以在 Tkinter、PyGTK+、PyQT、matplotlib 或任何图形库中相当轻松地执行类似的操作。

然而, matplotlib 中的极坐标图将相当简单:(

未经测试):

import math
from matplotlib.pyplot import figure, show

# assign your data here
fig = figure()
ax = fig.add_subplot(111, polar=True)

for pair in data:
    ax.plot(0, data[pair], 'o')
show()

这应该给你一个基本的可视化。您还可以将其更改

ax.plot(pair*math.pi, 1, 'o')

为不同的可视化风格。

matplotlib 文档非常好,并且有很多示例。

There are lots of tools you can use to do this.

There have been other mentions, but you could fairly easily do something like this in Tkinter, PyGTK+, PyQT, matplotlib, or really any graphical lib.

However, a polar plot in matplotlib would be fairly simple:

(untested):

import math
from matplotlib.pyplot import figure, show

# assign your data here
fig = figure()
ax = fig.add_subplot(111, polar=True)

for pair in data:
    ax.plot(0, data[pair], 'o')
show()

That should give you a rudimentary visualization. You could also change it around to

ax.plot(pair*math.pi, 1, 'o')

For a different style of visualization.

The matplotlib docs are very good and they have plenty of examples.

七颜 2024-09-16 00:06:40

也许 Networkx 可能会有所帮助。这个例子可能是一个很好的起点:

http://networkx.lanl.gov/examples /drawing/knuth_miles.html

Maybe Networkx may help. This example could be a good starting point:

http://networkx.lanl.gov/examples/drawing/knuth_miles.html

画▽骨i 2024-09-16 00:06:39

我不确定这种类型的图表的术语是什么(最小权重生成树?),但请查看 Graphviz 。还有一些 Python 绑定,但如果失败,您可以简单地生成一个输入文件,或直接输入数据。

I'm not sure what the term for that type of graph would be (minimum weight spanning tree?), but check out Graphviz. There are some Python bindings for it as well, but failing that you could simply generate an input file for it, or pipe data directly in.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文