Java中用于显示数据的简单可视化库
我正在为我的数据挖掘学校项目寻找一个好的 Java 可视化库。
因此,我的主要关注点是数据挖掘,我只需要一个简单的 API,它接收我的算法的输出(xml、csv 等,尚未决定)并提供看起来很酷的分析数据视图。
所以,我需要一个可以正常工作的简单库。
我喜欢 prefuse.org,但会不会太过杀伤力且耗时?该应用程序可能是基于 Web 的应用程序或 Java swing 应用程序(构建起来既简单又快速)。
更新
I am looking for a good visualization library in Java for my school project in data mining.
So, my primary focus will be on data mining and I just need a simple API which takes in the output of my algo (xml, csv etc, not yet decided) and give cool looking analytic like view of the data.
So, I need a simple library which just works.
I liked prefuse.org, but will be be an overkill and time consuming? The app might be a web based or a java swing app (what ever is easy and quick to build).
UPDATE
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您可以将输出转换为 graphviz 点格式 (graphviz),那么您可以使用 idot 增量查看器 (iDot_incremental_viewer) 它在幕后使用 prefuse,并且完全免费。 您在这里唯一需要做的就是将输出转换为简单的点文件。其余的将由增量观看者负责。
If you can convert the output into graphviz dot format (graphviz) than you can use idot incremental viewer (iDot_incremental_viewer) which uses prefuse behind the scenes and it's completely free. The only thing you need to do here is to convert the output in simple dot file. Rest will be taken care of incremental viewer.
你可以看看处理。
openprocessing.org 上也有很多很好的例子。曾经有一个名为 openvisualizations 的姊妹网站,但它似乎不再存在了。
you may take a look at Processing.
there are also a lot of nice examples in openprocessing.org. There used to be a sister website called openvisualizations but it does not seem to exist anymore.