タグ

グラフに関するDOISHIGERUのブックマーク (2)

  • Welcome to igraph's new home

    igraph – The network analysis package igraph is a collection of network analysis tools with the emphasis on efficiency, portability and ease of use. igraph is open source and free. igraph can be programmed in R, Python, Mathematica and C/C++. igraph R package python-igraph IGraph/M igraph C library python-igraph 0.9.6, the fourth bugfix release of the 0.9 series, has arrived. The preferred way of

  • Graphviz - mynote

    AT&Tのオープンソースでグラフ構造を描画するツール。 dot言語を用いて記述する。 Doxygenなんかで関数呼び出しやクラスの関連図の可視化にも使われているようだ。 簡単な使い方† A→B, B→C, C→Aの辺を持つ有向グラフの描画 test.dot digraph "g" { "A" -> "B" ; "B" -> "C" ; "C" -> "A" ; } で、test.dotをdottyかlneatoにわせると新しいウィンドウで描画する。 ファイルに書き出すときは、 dot -Kneato -Tgif test.dot -o test.gif 引数の-Kはレイアウトエンジンでcirco, dot, fdp, neato, twopiの5つのどれか。-Tは出力ファイルのフォーマットでdot, gif, jpg, png, ps, svgとか色々ある。 dottyの使い方† dot

  • 1