graph visualisation

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Alexander Zatvornitskiy

    #1

    graph visualisation

    Hello, All!

    I need routines for visualization of graphs, like this for Matlab:
    ===
    You can visualize an arbitrary graph (such as one learned using the structure
    learning routines) with Matlab code contributed by Ali Taylan Cemgil from the
    University of Nijmegen. For static BNs, call it as follows:

    draw_graph(bnet .dag);
    ===

    Are there any packages with such ability? Also I need in drawing plots of
    functions.

    Alexander, zatv@bk.ru
  • P@draigBrady.com

    #2
    Re: graph visualisation

    Alexander Zatvornitskiy wrote:[color=blue]
    > Hello, All!
    >
    > I need routines for visualization of graphs, like this for Matlab:[/color]

    You could output the dot language, parsed by graphviz
    See: http://dkbza.org/pydot.html

    Pádraig.

    Comment

    • bearophileHUGS@lycos.com

      #3
      Re: graph visualisation

      This isn't a visualisation routine, but it contains some of them, and
      with few mod you can adapt them for your needs:



      Gato - the Graph Animation Toolbox - is a software which visualizes
      algorithms on graphs.

      Bearophile

      Comment

      • cwmoad@gmail.com

        #4
        Re: graph visualisation


        Alexander Zatvornitskiy wrote:[color=blue]
        > Hello, All!
        >
        > I need routines for visualization of graphs, like this for Matlab:
        > ===
        > You can visualize an arbitrary graph (such as one learned using the[/color]
        structure[color=blue]
        > learning routines) with Matlab code contributed by Ali Taylan Cemgil[/color]
        from the[color=blue]
        > University of Nijmegen. For static BNs, call it as follows:
        >
        > draw_graph(bnet .dag);
        > ===
        >
        > Are there any packages with such ability? Also I need in drawing[/color]
        plots of[color=blue]
        > functions.
        >
        > Alexander, zatv@bk.ru[/color]

        Comment

        Working...