vote up 0 vote down star

Hi

I'm using the Haskell platform on Windows and I'd like to write a small program which can draw graphs. The graph should be exported to any image format (or even PDF).

What is the easiest way to accomplish this?

(By graph I mean plot.)

flag

1 Answer

vote up 1 vote down check

By "graph", do you mean the graph theory meaning of graph (nodes and edges) or a plot?

The easiest way to output a graph, in any language, is to pipe dot into Graphviz. Hackage even has a helpful Data.Graphviz package which does some of the low-level work for you, especially if you're already working with the excellent FGL.

The easiest way to output a plot, in any language, is to pipe gnuplot script into gnuplot. Again, there's a Graphics.Gnuplot package on Hackage.

Graphics.Rendering.Chart is quite nice; it does a fair amount more than gnuplot.

Actually, you should just look around Hackage and see what best suits your needs...

link|flag
I mean a plot. I'll update the question to clarify this. – blahblah Jun 4 at 16:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.