How to plot graph labels with Haskell's graphviz package
问题 This question does not solve the problem that I'm facing, but my question is based on it. What I'm trying to achieve is to plot a directed graph with labelled nodes and unlabelled edges using graphviz package. In my case nodes have labels of type String (the type definition of the graph is Gr String () ). Here's the code (where used graph is a minified version of clr486 - a perfect example of my use case): module Main where import Data.Graph.Inductive.Graph (mkGraph) import Data.Graph