I started working with gephi to help me display a dataset. The data set contains:
tags (terms for a specific image) as nodes
Google normalized gathering Google Distance between these tags as ribs with weight (between 0 and 1)
Each tag connects to all other tags if they both belong to the same image. Therefore, I have one cluster of nodes and edges for each image.
Now I have imported this dataset into gephi in the following format:
nodes: id, label
ribs: target, source, weight (0 to 1)
Like 500 knots and 6,000 ribs.
Now my problem is that after importing all these nodes and edges, the graph looks grouped without real order. Each cluster of each image is mixed with other clusters of other images. Now, using the modularization algorithm as the Partitition algorithm (which should use the Louvain method), the graph becomes color, each color is an image. Now I can break this mess using the Force Atlas 2 layout.
Now I have a color chart with something like 15 clusters (each cluster represents 1 image)
Now I want to group these clusters again using tags (nodes) according to their normalized google distance (weight of edges), which should be tags that are somewhat equal in value.
I hope you guys understand what I want to achieve. I can also download picutre to clarify this.
thanks a lot
puelo source share