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
3
votes
3 answers

Gephi scripting console not showing nodes

Am I missing something or is this a strange bug in Gephi scripting console ? the console shows edges but no nodes for example >>> len(g.edges) 4314 >>> len(g.nodes) 1 >>> g.edges set([e8926, e8794, e7024 ......]) >>> g.nodes set([None]) You can…
user1043144
  • 2,680
  • 5
  • 29
  • 45
3
votes
1 answer

Geo layout in igraph

I am wondering if there is a geo-layout to plot the network in igraph as the geo-layout in gephi. If not, how can I plot my nodes according to their latitude and longitude? https://gephi.org/2010/map-geocoded-data-with-gephi/ is the web page for…
Seen
  • 4,054
  • 4
  • 37
  • 46
3
votes
1 answer

csv format matlab/gephi

I have been using both k-means and Fuzzy c means for a few days now on a tricky data set, its yielding okish results but I want to visualize and manipulate the graphical outputs and I found a fantastic visual tool Gephi. If you click on the picture…
G Gr
  • 6,030
  • 20
  • 91
  • 184
2
votes
0 answers

How to use Gremlin.Net to send data in JanusGraph instance to Gephi for visualization?

I just came into contact with the field of graph database or graph data visualization this week. I want to use JanusGraph for graph analysis and visualization. I hope to import and process graph data in c#, and then click a button in c# WebUI, and…
isnf-uZ4
  • 53
  • 6
2
votes
1 answer

networkx position (biggest) nodes in the middle of a graph

I've been creating graphs with the networkx package and everything works fine. I would like to make the graphs even better by placing the bigger nodes in the middle of the graph and the layout functions from networkx does not seem to do the job. The…
fuzzysocks
  • 21
  • 1
  • 5
2
votes
0 answers

How to refine the visual properties of nodes in a GEXF file with NetworkX?

Is there a way to use NetworkX to refine the visual properties of a GEXF file after processing it with Gephi? That is, I would like to use Gephi to calculate different network metrics and use them to set the visual properties of network nodes first…
2
votes
1 answer

Converting networkx graph to Gephi

I am trying to convert a Python networkx graph to a Gephi compatible file. However, I am running into some issues which I don't understand how to solve: Questions: How can we incorporate node feature vectors into gexf files? I keep getting the…
Rocky the Owl
  • 325
  • 1
  • 2
  • 11
2
votes
1 answer

Transfering network data from R to Gephi

I have generated a microbial network based on microbial abundance correlation in R using igraph, hmisc and matrix packages. Now i want to work on it in Gephi. For that, I have to transfer my data to Gephi. I tried to prepare CSV file form this data…
Khashi
  • 47
  • 1
  • 7
2
votes
0 answers

Data frame error when converting iGraph to gexf object

I am trying to convert an iGraph object to a gexf object using the rgexf package so that I can write a file usable with Gephi, which I prefer for network visualization. My iGraph object is created by reading in two CSVs: h.edges and h.nodes. There…
CowCookie
  • 51
  • 4
2
votes
0 answers

Exporting node colors from NetworkX to Gephi

I am writing out all my graph node color hex numbers in a .gexf file via NetworkX's write_gexf() function. When I import the file into Gephi 0.9.2 and check the nodes in my data table, I can view a "color" attribute for my nodes. I have specific…
Vahid the Great
  • 393
  • 5
  • 18
2
votes
1 answer

How do I create network graph from an adjacency matrix for specific nodes only?

I have an adjacency matrix 5000X5000 and I would like to create a network graph . The requirement is that the user will input the node , and the output would be a graph ( 1st and 2nd degree ) for that particular input node. I have already tried…
Zebra
  • 139
  • 2
  • 10
2
votes
1 answer

Changing Node Size Proportionally to Attribute Data

In Gephi, I have a quick question relating to node size and the python scripting console: I have a list of many universities as nodes, with the amount of funding they get as an attribute column in the nodes tab. I'd like to have their nodes appear…
2
votes
0 answers

Make only the arrowheads larger in Gephi Overview Section?

I have a very dense network. In order to see the directionality of the arrow, I have to zoom in really deep. I cannot increase the width of the arrows too much since the graph becomes too cluttered. Is there some way I can increase just the…
rgbk21
  • 163
  • 10
2
votes
1 answer

Gephi: Requires Java, Cannot find Java 1.8 or higher

Descirption: I have downloaded Gephi. I have also installed latest Java. But still I'm getting error: Cannot find Java 1.8 or higher. I have read solutions to this problem which states to change the .config file to exclude the last java by "#".…
2
votes
1 answer

Exporting edge colors to Gephi from NetworkX

Adding colored nodes is covered here. However, a similar method does not work for edges, it seems. At the moment the edges of my graph are different colors in NetworkX, but Gephi can't seem to see that. I have tried: edge[2]['viz'] = {color: {'r':…
Colin Ricardo
  • 16,488
  • 11
  • 47
  • 80