Questions tagged [graphml]

File-format for graphs which consists of a language core to describe the structural properties of a graph and a flexible extension mechanism to add application-specific data

GraphML is a comprehensive and easy-to-use file format for graphs. It consists of a language core to describe the structural properties of a graph and a flexible extension mechanism to add application-specific data. Its main features include support of:

  • directed, undirected, and mixed graphs,
  • hypergraphs,
  • hierarchical graphs,
  • graphical representations,
  • references to external data,
  • application-specific attribute data, and
  • light-weight parsers.

Official Home

GraphML:Wikipedia

209 questions
0
votes
1 answer

Issue with export-graphml command

I am using Neo4j-CE-3.0.3 version in Windows and I'm trying to export graphml. I have used neo4j shell tools available in below link https://github.com/jexp/neo4j-shell-tools I unzipped the files to lib folder as well. Then in neo4j-shell, i tried…
learn_more
  • 189
  • 3
  • 13
0
votes
1 answer

I am looking for a visualization tool that takes Graphml as input.

Tool I am looking for should support as many features such as multi-relational graphs, more than one edge between given two nodes, nested graphs, hyper-graphs and port feature of Graphml. What are the options? The tools I saw did not seem to support…
sprabhu
  • 1
  • 2
0
votes
1 answer

matching a subset of nodes using xsl

I've got the following graph:
Hetzroni
  • 2,109
  • 1
  • 14
  • 29
0
votes
1 answer

TypeError: 'NoneType' object does not support item assignment

I am trying to parse a GraphMl file with the following Code And i am getting the following error. Would you please help me in solving this?
0
votes
1 answer

Exporting Gephi to GraphML not maintaining Node colour

I'm using Gephi to create a graphmodel and then export that into a .graphml file. However when I create the .graphml file the colour attribute is not maintained. The following is how I create a gephi graphmodel from my GraphClass (comprised of edges…
TCulos
  • 183
  • 3
  • 13
0
votes
2 answers

Error for importing graphml file to neo4j

I can't import my graphml file into neo4j using neo4j shell. I use this command: import-graphml -i C:\Users\MARIAM\Desktop\football.graphml but I get this error message: Invalid input 'i': expected (line 1, column 1 (offset:…
Sasa88
  • 327
  • 1
  • 3
  • 15
0
votes
1 answer

Tinkerpop Blueprints set id/name for graph

I'm creating some graphs with Blueprints, store them later in GraphML format and want to identify them by an id or name. Does the API provide something like this? GraphML files (even the ones created by Blueprints) are looking like
Sören Henning
  • 326
  • 4
  • 16
0
votes
3 answers

Neo4j interoperability between community and enterprise edition databases

I am having issue switching between neo4j enterprise and community versions.Since i was unable to do a graphml import,i switched to enterprise where i can import graphml databases.Once i am done i am trying to open the database file created in…
lost Coder
  • 577
  • 2
  • 8
  • 34
0
votes
1 answer

How export a network and the attributes in graphml with networkx?

Hi I'm quite new with networks and I've been trying to programme a code that gets all the .edges and .nodes files of a folder and generate a graphml file so I can visualize it in another software. But I also need to add some colours in my nodes but…
0
votes
1 answer

Import graph from graphml restoring node positions with NetworkX

I'm saving a graph with node positions in graphml format. I want to load it and draw its nodes in the same positions as before. Data saved in the graphml file consists of primitive types, whereas data used by mathplotlib to draw the graph is a…
Agostino
  • 2,723
  • 9
  • 48
  • 65
0
votes
0 answers

Importing graphml file into R igraph causes PCDATA invalid char value error

For my master thesis I have to do some network analysis. At first I use Java to restructure my tweet data to an edge list with edge and vertex attributes. After importing the csv file created by Java into R I create the vertices data frame out of…
0
votes
1 answer

Adding XML attributes to JUNG GraphML

I'm using JUNG to construct a Graph and then writing out to GraphML using a GraphMLWriter. Using the addVertexData and addEdgeData methods I can get tags output to the XML. e.g. I can get the following:
Stuart
  • 307
  • 4
  • 9
0
votes
1 answer

What is the best way to import a GraphML or GraphSON file into Neo4j in ruby?

I am using jruby-1.7.6 and neo4j 2.0.1. There is a Pacer Gem and pacer-neo4j gem that provides Pacer::GraphML.import which can be used to import GraphML file into neo4j. What to do about GraphSON file? What are other options to Is pacer only way…
Niroj Shrestha
  • 165
  • 1
  • 1
  • 6
0
votes
1 answer

Tinkerpop Blueprints GraphFactory.open() exception

I'm trying to load a tinkerpop db saved using TinkerGraph.FileType.GRAPHML type. This is my code: public Graph getDatabase(String path) { org.apache.commons.configuration.Configuration conf = new BaseConfiguration(); …
0pipe0
  • 17
  • 5
0
votes
2 answers

Vertex Factory in Quickgraph GraphML deserialization

I've been looking for this one in a while but coudn't find anything. I am trying to deserialize graph from GraphML using Quickgraph in C#. Here's the class I use to represent Vertex and Edge [Serializable] public class Room { public Room(int id,…
GoMati
  • 67
  • 2
  • 12
1 2 3
13
14