Questions tagged [jung]

JUNG is an open-source Java library for representing, manipulating, analyzing, and visualizing graph and network data.

JUNG — the Java Universal Network/Graph Framework--is a software library that provides a common and extensible language for the modeling, analysis, and visualization of data that can be represented as a graph or network. It is written in Java, which allows JUNG-based applications to make use of the extensive built-in capabilities of the Java API, as well as those of other existing third-party Java libraries.

The JUNG architecture is designed to support a variety of representations of entities and their relations, such as directed and undirected graphs, multi-modal graphs, graphs with parallel edges, and hyper-graphs. It provides a mechanism for annotating graphs, entities, and relations with metadata. This facilitates the creation of analytic tools for complex data sets that can examine the relations between entities as well as the metadata attached to each entity and relation

The current distribution of JUNG includes implementations of a number of algorithms from graph theory, data mining, and social network analysis, such as routines for clustering, decomposition, optimization, random graph generation, statistical analysis, and calculation of network distances, flows, and importance measures (centrality, PageRank, HITS, etc.). JUNG also provides a visualization framework that makes it easy to construct tools for the interactive exploration of network data. Users can use one of the layout algorithms provided, or use the framework to create their own custom layouts. In addition, filtering mechanisms are provided which allow users to focus their attention, or their algorithms, on specific portions of the graph.

433 questions
0
votes
2 answers

Best JUNG Graph for Modeling Routes on an ESB

I'm a Java developer that is trying to model the Endpoints and Routes on my Camel-driven backend (SOA) as a graph of vertices and edges. For instance, if I have a Camel route that starts with an ActiveMQ queue, dequeues its messages and passes them…
IAmYourFaja
  • 55,468
  • 181
  • 466
  • 756
-1
votes
1 answer

How to support nested subgraph using JUNG

Does Jung support nested subgraph like Graphviz fdp layout? The link is: http://www.graphviz.org/content/fdpclust thanks.
-1
votes
2 answers

Q: How to change arrow position or remove it from an edge ? (JUNG)

What the question states.I have many arrows connecting to one Node and it looks very cluttered on the graph. Any way to relocate the arrows towards the center or remove them ?
-1
votes
1 answer

Jung graph display on JFrame

I'm trying to reuse the code from Jung's web page (treecolapse.java; http://jung.sourceforge.net/applet/treecollapse.html), but I need that the graph's display occupies all the frame, not a part of it ...or at least that the display by default not…
-1
votes
1 answer

Is there any implementation of degree distribution in JUNG2 API?

I tried to look in the documentation of the verision 2, but I didnt find anything.
d_low
  • 141
  • 1
  • 1
  • 7
-1
votes
1 answer

Weight in Graph Using Jung

I use Jung to draw a graph and the inputs are in .net format (Building it with txt2pajek). I want to see weights on edges and in output. Please help me out how to do that? Thanks The code and .net file format are: package pGraph; import…
mellisa
  • 1
  • 1
-1
votes
1 answer

How to set PageRank and Hits parameters by using JUNG?

I'm trying to use PageRank and Hits algorithm on a DirectedSparseGraph I have build from a Wikipedia Dump. The graph is huge obviously and its nodes are String, while its Edge are Integer. The problem is that when I run this…
CodePi
  • 13
  • 4
-1
votes
1 answer

Java Jung draw ovals

i am using jung (java) try to draw circles to the Background. I dont get any output and wondering why it is not working. Iam using PreRenderPaintable and PostRenderPaintable but still get no results. vv.addPreRenderPaintable(new…
hehe
  • 227
  • 5
  • 15
-2
votes
1 answer

I have a function which returns nodes in terms of latitude and longitudes using hibernate and spring. How do I map these nodes into a map using JUNG?

I have a function which returns desired nodes from a tree in terms of latitude and longitudes( its values are real latitude and longitudes) and I want to check the function by plotting them on a graph to make a map. How do I do so? I was trying to…
-3
votes
1 answer

How to draw edges with Jung library?

I have an implementation of a Graph and I want to visualize it using JUNG. My problem is that when I add an edge, I visualize 2 edges, for example 1 to 2 and 2 to 1 with the same weight, but I just want to see 1 edge. My code: public void…
Mishale
  • 1
  • 1
-3
votes
1 answer

Java, Jung Framework: How to edit and set vertices locations

I'm trying to set coordinates (x and y) of vertices in given position. I use the VertexImageShaperDemo example. The x,y coordinates for every vertex are already in the database. How can I place all IP addresses in their specific locations which is…
Adil
  • 5
  • 3
-3
votes
1 answer

Using the library JUNG graphs

I use the JUNG java library to manage graphs and I want to know how to color the connected nodes with the same color to distinguish the connected components. For example, I want the nodes 2, 3 and 4 to have the same color and the node 1to have…
-3
votes
2 answers

JAVA - where should i put JUNG in my directory? im programming only in notepad

I downloaded the JUNG package but i don't know where should i put in my directory.
Levin
  • 1
1 2 3
28
29