Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                

タグ

関連タグで絞り込む (1)

タグの絞り込みを解除

graphvizに関するma2のブックマーク (5)

  • GraphvizR

    Download Rdoc (0.5.0) SVN gem What’s this? GraphvizR is graphviz adapter for Ruby, and it can: generate a graphviz dot file, generate an image file by means of utilizing graphviz, interprete rdot file and generate an image file, and, generate a graph image file in rails application as a rails plugin. How to install gem install graphviz_r Additionaly, if you want to use this in rails: script/plugin

  • ruby-graphviz で遊んでみる - harry’s memorandum

    ruby-graphvizで遊んでみました。 インストール サーバはCentOS5.2 x86_64で。 先にYumリポジトリを追加*1 $ cd /etc/yum.repos.d/ $ sudo wget http://www.graphviz.org/graphviz-rhel.repo $ sudo yum list 必要なものをインストール $ sudo yum install graphviz graphviz-doc graphviz-gd graphviz-graphs gemruby-graphvizをインストール*2 $ sudo gem install ruby-graphviz サンプル 指定したディレクトリツリーをruby-graphvizでグラフにしてみた。*3 #!/usr/bin/ruby $:.unshift( "../lib" ); require 'r

    ruby-graphviz で遊んでみる - harry’s memorandum
  • ruby-graphviz を使う - Loud Minority

    GraphVizを,rubyからあつかいませう. graphvizのインストール(下記はmacportsの例) sudo port install graphviz rubygemsで ruby-graphviz をインストール sudo gem install ruby-graphviz --remote サンプルプログラムを動かしてみる 以下をsample01.rb として保存し(もともとruby-graphvizに入っているサンプルプログラムを gems用にrequire部分を変更したもの) #!/usr/bin/ruby require "rubygems" gem "ruby-graphviz" require "graphviz" g = nil if ARGV[0] g = GraphViz::new( "G", :path => ARGV[0] ) else g = Gra

    ruby-graphviz を使う - Loud Minority
  • About

    Graph Visualization Graph visualization is a way of representing structural information as diagrams of abstract graphs and networks. Automatic graph drawing has many important applications in software engineering, database and web design, networking, and in visual interfaces for many other domains. Graphviz is open source graph visualization software. It has several main graph layout programs. See

    ma2
    ma2 2010/04/26
  • Graphviz チュートリアル

    Graphviz というツールは、 「DOT 言語」という言語で書かれたグラフ表現を GIF や PNG などのファイルフォーマットに変換してくれるシステムです。 家のホームページは http://www.graphviz.org/ です。 ここでは、Graphviz のインストールと使い方についてまとめてみました。 なお、ここでインストール/使用する Graphviz は version 2.4(2005-08-01 現在)です。 また、インストール先の環境は Cygwin です。 ダウンロードとインストール 簡単なサンプル グラフ全体の属性 ノードの属性 エッジの属性 その他の事項 レコード サブグラフ 無向グラフ 形の一覧 トップへ ↑

    ma2
    ma2 2010/04/26
  • 1