Flash Force Directed Graph
August 21st, 2007 | Published in Programming, Visualization
I came across this nice little flash force directed graph today. It was put together by Creative Synthesis.
The thing that makes this nice actually is (a) it works and (b) the xml file is very intuitive.
<?xml version="1.0"?>
<graph title="Sample Graph" bgcolor="ffffff" linecolor="cccccc" viewmode="display" width="725" height="400">
<node id="n1" text="Some Text" image="Some Image Link" link="Some Link" scale="100" color="0000ff" textcolor="0000ff"/>
<node id="n2" text="Some Text" image="Some Image Link" link="Some Link" scale="100" color="0000ff" textcolor="0000ff"/>
<node id="n3" text="Some Text" image="Some Image Link" link="Some Link" scale="100" color="0000ff" textcolor="0000ff"/>
<edge sourceNode="n1" targetNode="n2" label="Some Label" textcolor="555555"/>
<edge sourceNode="n1" targetNode="n3" label="Some Label" textcolor="555555"/>
</graph>
Doesn’t get much simpler.
Related Posts
Benford’s Law and Trailing Digit TestsLatent Semantic Indexing
Singular Value Decomposition
Pearson’s Correlation Coefficient
SQL Server Migration Assistant for Access Walk Through.