如何可视化图数据结构?
我正在寻找一种使用digraph
模块绘制或可视化在Erlang中的图形的方法。在手动页面中,我找不到任何功能。
如何绘制或可视化图?
I'm looking for a way to plot or visualize a graph made in Erlang using the digraph
module. In the manual pages I can't find any function for doing this.
How do I plot or visualize a graph?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于桌面应用程序,纯
wx
是一种选择。[wx graph] [1] https://wwwww.erlang.org/www.erlang.org/man/wxgraphicspath
我认为您必须编写许多程序来开发必要的API,因为
wx
的API不够。我已经使用了
wx
,在Erlang的WX
不活动。它是文档和Q& A还不够,时间成本很高。另一个选择可能是使用
WX
+WebView
,将数据发送到JavaScript以显示图形。它节省了您的保存,以开发上述必要的API。
第三选择可能是使用
dart/flutter
作为客户端,erlang作为服务器发送数据。在此选择中,无需WX
。For desktop application, pure
wx
is one choice.[wx graph] [1]https://www.erlang.org/doc/man/wxgraphicspath
I think you have to write many program for developing your necessary api because
wx
's api not enough.I have used
wx
just before, erlang'swx
is not active. It's document's and Q&A is not enough, Time cost is high.Another choice may be to use
wx
+webview
, send the data to javascript to show graph by it.It save your save to develop above mentioned necessary api.
Third choice may be to use
dart/flutter
as client, erlang as server to send data. In this choice, no needwx
.