TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: Is there a software to visualize and modify a graph?

2 点作者 tiagoma超过 6 年前
In the past year there have been multiple times where I really needed a tool to visualize and modify a graph. Ex: visualize a complex build pipeline, visualize c++ include graphs, visualize inheritance graphs.<p>It would be great if the tool also enabled me to have some sort of way to see properties of each node&#x2F;edge in the graph.<p>Things I tried:<p>Python - networkx is great but the rendered graphs are not dynamic. Only static pictures.<p>Gephi - great for some analysis, but does not support layouting of the graph (for example a tree). Also seem to crap out of realtively small graphs.<p>Boost graph - Same issues as python networkx.<p>Visual Studio - really poor rendering performance. If you move a big graph it takes sometimes minutes for the graph to re-draw.

3 条评论

sigmaprimus超过 6 年前
Maybe<p><a href="https:&#x2F;&#x2F;support.google.com&#x2F;docs&#x2F;answer&#x2F;190718?hl=en" rel="nofollow">https:&#x2F;&#x2F;support.google.com&#x2F;docs&#x2F;answer&#x2F;190718?hl=en</a><p>?
评论 #17905987 未加载
eyer2016超过 6 年前
I have used networkx_viewer with networkx. It&#x27;s a straightforward tool with the kind of things you&#x27;re looking for
blacksqr超过 6 年前
Graph-drawing is one of the hardest theoretical problems in computer science. You&#x27;re asking a lot more than you may realize.<p><a href="https:&#x2F;&#x2F;xkcd.com&#x2F;1425&#x2F;" rel="nofollow">https:&#x2F;&#x2F;xkcd.com&#x2F;1425&#x2F;</a>