3
votes
5answers
53 views
Ruby charting library?
I need to display some charts/graphs based upon user inputs on my web aplication built using Ruby on Rails. Are there any charting libraries out there that I could use with ROR for …
0
votes
1answer
29 views
Plotting Histogram: How can I do it from scratch using data stored in a database?
I have some data stored in a database like this:
TableName: faults
Table:
+------------+--------------+
| fault_type | total |
+------------+--------------+
| 1 | …
1
vote
1answer
25 views
Constrained graph transformation in scheduling applications
I'm working on an interactive job scheduling application. Given a set of resources with corresponding capacity/availabilty profiles, a set of jobs to be executed on these resources …
3
votes
0answers
38 views
Node layering in Graphviz
I'm creating a graph using Graphviz (compiled with neato). This graph contains many overlapping nodes which is perfectly fine. However, there is a group of large nodes which I pref …
0
votes
0answers
23 views
Java: Minimum spanning tree with JGraphT?
I have a problem that can essentially be viewed as a graph. I'm considering using JGraphT to implement it instead of rolling my own. What would be the best way to get a minimum spa …
1
vote
4answers
78 views
Graph Database in Java (other than Neo4J)
Greetings,
Is there any open source graph database available other than Neo4J??
NOTE: Why not Neo4J?
Neo4J is opensource, but counts primitives (number of nodes,relationships &a …
0
votes
2answers
28 views
How to generate a graphic on the fly with cherrypy
I am developing a small web application using cherrypy and I would like to generate some graphs from the data stored in a database. The web pages with tables are easy and I plan t …
0
votes
3answers
24 views
where can I find graph input resources/files?
Hi!
I want to test various algorithms on graphs.
Does anyone know a web where I can get lots of examples in text files?
I've found many examples but they are always images. I want …
2
votes
4answers
60 views
How do I generate a contour graph?
How do I generate a contour graph like this:
It's easy enough if the points are on a regular grid, but what if they aren't, like in my example? Is there a fairly simple algorithm …
0
votes
2answers
58 views
Java: Access local variables from anon inner class? (PriorityQueue)
I want to use a PriorityQueue to do a topological sort on a graph. For brevity, I'd like to use an anonymous inner class for the comparator. However, I need access to the graph g i …
0
votes
1answer
68 views
Java: Adding nodes to graph bug
Preface: I know that there are high quality graph APIs available. I'm interested in writing my own for self-improvement.
This is my function to add nodes:
public void addNode …
0
votes
1answer
53 views
Generate pretty image of tree/graph
Hello,
I want to generate a pretty image of my tree/graph data. I had a look at Graphviz, but the renderings are not great. Do you know of a solution that will produce pretty imag …
2
votes
1answer
45 views
Partitioning of a directed graph
I'm trying to partition a network into one or more parts based on a set of critical vertices. I've got code that I believe solves my problem (at least, it has for the cases I'm int …
-2
votes
0answers
49 views
dynamic graph generation [closed]
What do you mean by dynamic graph generation ? kindly explain in detail .
-1
votes
0answers
23 views
Proof by Induction: Undirected simple graph [closed]
Prove the following facts by induction on n. Let G be an undirected simple graph with
n vertices and m edges.
a) if G is connected, then m >= n − 1
b) if G is a tree, then m = n − …
