Tagged Questions
The graphml tag has no wiki summary.
3
votes
1answer
155 views
How to query graphml using php, DomDocument and DomXPath?
Does someone know how to query a graphml document with php, DomDocument and DomXpath?
My query seems to be correct.
e.g. //graphml/graph/node
$dom = new DomDocument();
$dom->load("doc.graphml");
...
2
votes
1answer
382 views
Transfer layout from networkx to cytoscape
I want to use networkx to generate a layout for a graph. Is it possible to transfer this layout to cytoscape and draw it there? I tried to simply write a graph as
import networkx as nx
G = nx.Graph()
...
2
votes
1answer
434 views
Writing GraphML with XOM?
I'm trying to write out a graphML document with XOM in java, but I can't figure out how to get all of the namespace declarations correct. To have valid graphML, I need to have a root element that ...
1
vote
2answers
73 views
How to process XML files using Graph::easy module in Perl
I want to convert an XML file to graphML using the Perl module Graph::easy. I reeded Graph::module then I tried some examples how to add node and how to add edge like that and I generated graphML file ...
1
vote
2answers
107 views
How convert an embedded Neo4j graph db to GraphML with Python?
I want to store my embedded Neo4j Graph db to GraphML to draw it with a tool like yEd.
I'm managing the graph db with python27.
Does any body knows a way to do that?
1
vote
1answer
82 views
Prefuse : Adding edge weights to the GraphView Demo
I am using the prefuse visualization toolkit, The GraphView Demo in the toolkit is amazing providing a variety of controls to visualize the data.
I am able to generate GraphML for my dataset and ...
1
vote
0answers
81 views
Easiest format to use to dump a graph for yEd
I'm currently trying to dump a graph within java for yEd. I've been trying to use graphml for the format, but I've found it to be very cumbersome. Particularly, the size of the nodes will not resize ...
1
vote
1answer
858 views
Importing GraphML files in JUNG
I am new to JUNG, can any one show me how to import a GraphML to JUNG.
1
vote
2answers
1k views
How to load my data into a GraphML file for easy use in Prefuse?
I'm trying to generate some graphs with prefuse, and it seems like the easiest way to load the data into prefuse is to use a GraphML file.
Is there an easy way to write these files from my data?
Or ...
1
vote
1answer
922 views
Problem with linking against libexpat in Boost Build - for building graphml
On my system, expat is located at
/usr/include/expat.h
/usr/include/expat_external.h
/usr/lib/libexpat.1.5.0.dylib
/usr/lib/libexpat.1.dylib
/usr/lib/libexpat.dylib
/usr/lib/libexpat.la
So I ...
0
votes
1answer
18 views
graphml generate from my application cannot open on yEd Graph Editor
I generate graphml file from my application writing in Delphi7. Every thing is fine except when I open some my graphml file using yEd Graph Editor It raise Error like this.
test.graphml.
at ...
0
votes
1answer
22 views
Graphml parse error
I tried to create a graphml file using python and igraph library. I can construct igraph's graph object and wrote it to a file using:
g.write_graphml("mygraph.graphml")
Everything seems to be ...
0
votes
1answer
20 views
How does one import group data from a graphml file into NodeXL
I've been experimenting with importing graphml into NodeXL and am excited about how clean that is.
I still have not found an easy way to import group data as part of my graphml file?
Any hints would ...
0
votes
1answer
118 views
How to create a GraphML repository report with Maven?
I want to create a GraphML repository report for all in-house made artifacts in my local Maven repository similar to the repreport target (ant/ivy).
so far i found:
create mega-pom which includes ...
0
votes
1answer
142 views
Boost read_graphml example
I'm trying to build a simple GraphML loader using BOOST libraries. I have a GraphML file and I want to load it in a boost adjacency list structure. The graph is directed and the only information that ...
0
votes
0answers
119 views
graphml icons for uml design
I'm currently trying yED for the purpose of creating software design documents, which seems to contain some useful existing sections for UML and entity relationships, but i'm missing some icons like ...
0
votes
1answer
43 views
Graph File Format that supports list as attributes
I'd like to store a graph to a file. Usually I would do that in GraphML.
But my nodes have non-scalar properties (e.g. the property "hobby" of node "Alice" has the values ["swimming", "reading"]).
As ...
0
votes
1answer
234 views
Jung weighted edges from graphml
I am using Jung 2.0. I have a graphml file with weighted edges. I am using a graphml reader to read the file and create the graph. When I visualize the graph with a FRLayout, I observe that the graph ...
0
votes
1answer
301 views
Gephi API example
Can somebody give me an example of how to display programmatically a graph with Gephi from a .graphml file? Thanks.