Questions tagged [gephi]

An interactive visualization and exploration platform for all kinds of networks and complex systems, dynamic and hierarchical graphs.

The Open Graph Viz Platform

Gephi is a tool for people that have to explore and understand graphs. Like Photoshop but for data, the user interacts with the representation, manipulate the structures, shapes and colors to reveal hidden properties. The goal is to help data analysts to make hypothesis, intuitively discover patterns, isolate structure singularities or faults during data sourcing. It is a complementary tool to traditional statistics, as visual thinking with interactive interfaces is now recognized to facilitate reasoning. This is a software for Exploratory Data Analysis, a paradigm appeared in the Visual Analytics field of research.

Its homepage is at https://gephi.org/

415 questions
0
votes
1 answer

TypeError: Invalid arguments to grsim - Python

Im trying to run this code : #!/usr/bin/env python """ The example presented at the MURI review, illustrating the use of jtlvint and automaton modules Nok Wongpiromsarn (nok@cds.caltech.edu) August 3, 2010 minor refactoring by SCL…
NLed
  • 1,845
  • 14
  • 39
  • 68
0
votes
1 answer

How do I set the size of a node in a .dot file?

I want to set the size of my nodes relative to their impact in the graph, and I need to find some way to have their size appear in Gephi. At the moment, I'm using the following code: def write_graph_dot(graph, filename, label=None): g =…
alexgolec
  • 26,898
  • 33
  • 107
  • 159
0
votes
1 answer

Create native SVG elements from Illustrator/Gephi

I'm trying to add interactivity to a network graph I made in Gephi, which outputs SVG. I'm using a Raphael template that likes my nodes to be inputted as SVG circles. The problem is that my SVG circles from Gephi are actually bezier curves. For…
mhkeller
  • 713
  • 1
  • 8
  • 19
-1
votes
1 answer

Issue with Node Labels in Gephi

I've encountered an issue while using Gephi, specifically related to importing nodes. Currently, the labels appear in the IDs column, and the label column remains empty. I'm seeking assistance to resolve this matter. I have tried many methods to fix…
-1
votes
1 answer

Neo4j or Gephi for animating graph over time (ideally making a GIF)?

I have a couple hundred nodes linking to one another, a sort of social network with no labels on their relationship yet. I want to make a GIF animation of change overtime, maybe as a screenshot. What is a software that will help me do this best? I…
nanewbie91
  • 23
  • 4
-1
votes
1 answer

How do I filter out low occurrence nodes from a graph?

I'm trying to make a graph using hashtags from Instagram. Each node is a hashtag and has edges to each hashtag it was paired with in a post. I want to filter out the nodes (hashtags) with a low number of occurrences. I'm able to filter them out by…
Jehez
  • 1
-1
votes
2 answers

Preparing data for Gephi with Python or R

I am currently trying to prepare my data for network analysis in Gephi. I have data in the following format: Raw Data SHIPMENTCOUNT US Port Foreign Initial Port Ultimate Port 1 BALTIMORE ANTWERP DORTMUND 1 BALTIMORE ANTWERP MUMBAI 1 …
mariag
  • 1
  • 1
-1
votes
1 answer

No top bar or graph shown on Gephi

It's the first time I'm using Gephi (version 0.9.2) and when I enter I get this screen. Now when I select one of the .gexf files everything seems to go smoothly... , but then I click on "Accept" and no graph is shown, and clicking on any of…
zest16
  • 455
  • 3
  • 7
  • 20
-1
votes
1 answer

Visualization graph by centralities

I computed betweenness centralities of nodes in python igraph and saved it in csv file. Now i want to visual it in python and igraph library or gephi ,by centralities. How can i do it?
-1
votes
1 answer

Making 5 random changes to an adjacency list for a directed graph

Is there an automated way to delete 5 edges from an existing adjacency list, while at the same time adding 5 new random edges that connect existing nodes to the list? Meaning that the deleted edges will be replaced by random edges. Alternatively, I…
Turbo_Ulf
  • 1
  • 2
-1
votes
1 answer

can't find exported SigmaJS file from Gephi

In Gephi, network open, file -> export -> sigma.js template, specify a folder... and nothing is there when I look. I thought maybe it was somehow invisible and went ahead and used python -m http.server in the folder it supposedly exported to and…
Ejaz
  • 109
  • 7
-1
votes
1 answer

Neo4j to Gephi import : Failed to invoke procedure Invalid UTF-8

I tried to import my data from Neo4j into Gephi but it doesn't work. I have the following result in Neo4j : Failed to invoke procedure apoc.gephi.add: Caused by: com.fasterxml.jackson.core.JsonParseException: Invalid UTF-8 start byte 0xfb at…
LJRB
  • 199
  • 2
  • 11
-1
votes
1 answer

import nodes with 3D coordinate to gephi

How to import nodes with 3D coordinate to gephi? The node file structured like this: index x y z 0 0.21 0.34 0.34 1 0.23 0.35 0.25 2 0.25 0.45 0.65 ... There are many nodes(10000+).
Ausrada404
  • 499
  • 1
  • 7
  • 17
-1
votes
1 answer

Analyze networks which are not scale free

I am trying to analyze the graph constructed with networkx having around 7000 nodes. When I plot the degree distribution there are nodes that are far away from the fitted power law as shown in the attached plot. This means the network is not…
hemanta
  • 1,405
  • 2
  • 13
  • 23
-1
votes
1 answer

Visualizing an Embedded Neo4j Graph Database

For the past two weeks, I have read a variety of stackoverflow posts related to the visualization of a Neo4j database, but they don't address my issue. I get ideas from one post, ideas from another, but they are not self-consistent. I've also done a…