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
4
votes
2 answers

Thick edges in Gephi

Is there a way to force Gephi to use the same thickness for ALL edges? For some reason my network has few (3 or 4) super thick edges and I dont have a clue why. Ruth
ruthy_gg
  • 337
  • 3
  • 11
4
votes
3 answers

How to move (drag) a zoomed graph in overview pane?

When I'm in overview window and zoom in, some part of the graph is not visible. I want to drag the graph so that I can see it at the zoomed in size. I tried the "Center on graph" button, but it zooms out the graph and centers it on the screen. I…
user2773013
  • 3,102
  • 8
  • 38
  • 58
4
votes
3 answers

Plot igraph network like Gephi Force Atlas 2

I have a network (igraph) with the following characteristics: >g IGRAPH DN-- 3370 16699 -- + attr: name (v/c), grupo (v/n), year (v/n), grupo.freq (v/n), grupo.perc (v/n), vertex.frame.size (v/n), color (v/c), vertex.frame.color (v/c), grupo…
4
votes
1 answer

Networkx and nx.write_gexf ... Dynamic Node Attributes

I am trying to use NetworkX to build a network with dynamic node attributes. I have tried the following: import networkx as nx G=nx.Graph() G.add_node('A', attr_dict={'data': 1, 'start' : "1990-01-01", 'end' : "1993-01-01"}) G.add_node('B',…
sanguineturtle
  • 1,425
  • 2
  • 15
  • 29
4
votes
2 answers

Clustering in Gephi (Louvain Method)

I have started to work with gephi to help me display a dataset. The dataset contains: tags (terms for a certain picture) as nodes Normalized Google Similarity Distance between those tags as edges with a weight (between 0 und 1) Every tag is…
puelo
  • 5,464
  • 2
  • 34
  • 62
4
votes
1 answer

Is it possible to use Gephi compiled with IKVM in a website?

I'm currently trying to load and use the Gephi Toolkit from within a .Net 4 C# website. I have a version of the toolkit jar file compiled against the IKVM virtual machine, which works as expected from a command line application using the following…
Ed Broome
  • 75
  • 6
3
votes
1 answer

graphml file containing emojis getting converted to black nodes in gephi

Good morning, I am trying to visualize an emoji graphml file in gephi, however, when I import it in, it keeps showing the black dots like here: I am not sure what is going on. Am I missing something? Please give me little direction if you could, I…
CaseebRamos
  • 684
  • 3
  • 18
3
votes
1 answer

Create strange edge matrix

I've got a dataframe like this one: import pandas as pd df = pd.DataFrame(columns = ['id', 'tag']) df['id'] = (['1925782942580621034', '1925782942580621034', '1925782942580621034', '1925782942580621034', '1930659617975470678',…
SkuPak
  • 307
  • 8
  • 16
3
votes
1 answer

Python: how to convert elements of a list of lists into an undirected graph?

I have a program which retrieves a list of PubMed publications and wish to build a graph of co-authorship, meaning that for each article I want to add each author (if not already present) as a vertex and add an undirected edge (or increase its…
Robert Alexander
  • 875
  • 9
  • 24
3
votes
0 answers

All posible paths between 2 nodes in gephi

is there any way to find all paths with the maximum length of 2 and less between 2 nodes or 2 modules with filters in gephi? 1)I tried using an intersection on 2 ego networks (each for one node) is it right or am i missing something? 2)how is it…
3
votes
0 answers

Changing edge arrow size in Gephi 0.9.2

I'm trying to change the size of arrows so they're big enough to see easily. The slider won't let me move any more to the right and the arrows are too small at the maximum size. Is there a way to increase the size more? Thanks for the…
naglemi
  • 75
  • 8
3
votes
1 answer

Gephi 0.9.1 does not display edge arrows whith curved edges

I have a very simple network consisting of four nodes and seven directed edges. When I look in the "Preview"-mode at the network with straight edges, the arrows are shown. But if there are edges back and forth between two nodes, only one edge is…
user436994
  • 601
  • 5
  • 15
3
votes
2 answers

Streaming data from Neo4j to Gephi - can't read url

As it is not possible yet to transfer data from Neo4j to Gephi via .graphml- file without loss of information I tried to stream the data. Therefore the Graph Streaming Plugin for Gephi exists here. Following the instructions and inserting…
Grapheneer
  • 897
  • 8
  • 25
3
votes
2 answers

Gephi: increase maximal zoom

I want to use gephi to plot a huge network with ~5.500 notes. I would like to see more of the network structure, thus I use Force Atlas with a large Repulsion Strength. Unfortunatly, at some point when I zoom out, a mystical square appears which…
Mario Krenn
  • 223
  • 2
  • 13
3
votes
1 answer

Import node and edge CSV using gephi toolkit in java

I need to develop a graph using gephi toolkit in Java. I have my node and edge data in CSV format. All the toolkit tutorials have syntax to import a gml or gexf format. Since I have 2 CSV files can anyone tell me the syntax of importing this csv's…
1 2
3
27 28