Planar Graph Layouts

前端 未结 2 831
无人及你
无人及你 2020-12-01 17:15

What are some edge overlap minimization techniques when laying out a graph? (Preferably related to GraphViz) Also are there any existing software that can layout a graph in

2条回答
  •  北海茫月
    2020-12-01 17:23

    For general graphs, the problem of a determining a planar layout of a graph with least edges crossing (the Crossing Number) is NP-hard. So some heuristic methods are used (like the Force based layout algorithms).

    The page below briefly describes the graphviz algorithms and suggests some ways to use them for benefit. It also has links to the pdfs which should contain more information about the algorithms:

    http://rss.acs.unt.edu/Rdoc/library/Rgraphviz/html/GraphvizLayouts.html

    Hope that helps.

提交回复
热议问题