Ben:
The force-directed layout algorithms do not have a notion of vertex order. The Fruchterman-Reingold algorithm, for example, attempts to satisfy these criteria:
I'm wondering if a different type of graph might be more appropriate for your needs--perhaps a scatterplot that allows data points to be plotted within Cartesian coordinates and selectively connected to each other. Trying to get NodeXL to do this would be difficult. You would have to devise and implement a new layout algorithm, or use fancy Excel formula or VBA calculations to set all the X and Y column values.
-- Tony
The force-directed layout algorithms do not have a notion of vertex order. The Fruchterman-Reingold algorithm, for example, attempts to satisfy these criteria:
- Distribute the vertices evenly in the frame.
- Minimize edge crossings.
- Make edge lengths uniform.
- Reflect inherent symmetry.
-
Conform to the frame.
I'm wondering if a different type of graph might be more appropriate for your needs--perhaps a scatterplot that allows data points to be plotted within Cartesian coordinates and selectively connected to each other. Trying to get NodeXL to do this would be difficult. You would have to devise and implement a new layout algorithm, or use fancy Excel formula or VBA calculations to set all the X and Y column values.
-- Tony