I am trying to visualize two columns of an an Excel file: Column A contains categories, while Column B contains individual entries. The dot file is generated by Excel using
Here's an idea:
gvpack
to pack all graphs togetherThe basic idea is to use graphs instead of clusters so you can use gvpack
to pack the graphs.
Something like:
unflatten -f -l 4 -c 6 input.dot | dot | gvpack -array_t6 | neato -s -n2 -Tpng -o output.png
Not sure though whether unflatten handles files with several graphs.
(Sorry, no time to check it).