GUI and graph

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • questions?

    #1

    GUI and graph

    I have a graph with different parameters along different parts of the
    graph.

    I want to have a program that can display the graph with coloring for
    different part of the graph. Is this possible in Python? What should I
    read?

    Thanks for any comments

  • mneyer@gmail.com

    #2
    Re: GUI and graph

    Look up the information on graphical displays in Tk for python.
    http://www.pythonware.com/library/tkinter/introduction/

    Comment

    • Avell Diroll

      #3
      Re: GUI and graph

      questions? wrote:[color=blue]
      > I have a graph with different parameters along different parts of the
      > graph.
      >
      > I want to have a program that can display the graph with coloring for
      > different part of the graph. Is this possible in Python? What should I
      > read?
      >
      > Thanks for any comments
      >[/color]

      I would suggest a combination of pyGTK and Matplotlib.
      A quick tutorial may be found here : http://www.serpia.org/pygtk

      Thinking about it, you might be satisfied with the gnuplot interface for
      python : http://gnuplot-py.sourceforge.net/

      Hope that helped ...

      Comment

      • Kent Johnson

        #4
        Re: GUI and graph

        questions? wrote:[color=blue]
        > I have a graph with different parameters along different parts of the
        > graph.
        >
        > I want to have a program that can display the graph with coloring for
        > different part of the graph. Is this possible in Python? What should I
        > read?[/color]

        pydot is pretty amazing in its abilitity to make nice, readable renderings of graph data.


        Kent

        Comment

        • Fabrizio Milo

          #5
          Re: GUI and graph

          > pydot is pretty amazing in its abilitity to make nice, readable renderings of graph data.[color=blue]
          > http://dkbza.org/pydot.html[/color]

          Well It's thanks to graphwiz..

          http://www.research.att.com/sw/tools/graphviz/

          I suggest to read the DOT language specification ( it is really easy )
          and to roll up your own python script to build your dot file.

          Fabrizio Milo aka Misto

          Comment

          • bearophileHUGS@lycos.com

            #6
            Re: GUI and graph

            Maybe this graph library can be useful to you:
            http://sourceforge.net/projects/pynetwork/

            Bye,
            bearophile

            Comment

            • questions?

              #7
              Re: GUI and graph

              Thanks all you guys for the help.

              Comment

              Working...