Top "Graph" questions

This "graph" tag refers to a graphical data presentation, e.g. chart or diagram.

What is the maximum number of edges in a directed graph with n nodes?

What is the maximum number of edges in a directed graph with n nodes? Is there any upper bound?

algorithm math graph max
What is better, adjacency lists or adjacency matrices for graph problems in C++?

What is better, adjacency lists or adjacency matrix, for graph problems in C++? What are the advantages and disadvantages of …

c++ graph adjacency-list adjacency-matrix
How to trace the path in a Breadth-First Search?

How do you trace the path of a Breadth-First Search, such that in the following example: If searching for key 11, …

python algorithm graph breadth-first-search
How do you plot bar charts in gnuplot?

How do you plot bar charts in gnuplot with text labels?

graph charts plot gnuplot bar-chart
Plotting using a CSV file

I have a csv file which has 5 entries on every row. Every entry is whether a network packet is triggered …

csv graph gnuplot
Charts for Android

I am working on a project which have some charts (graphs), tick chart, candlestick chart and range chart. But the …

android graph charts
Matplotlib/pyplot: How to enforce axis range?

I would like to draw a standard 2D line graph with pylot, but force the axes' values to be between 0 …

python graph matplotlib axes
How do I calculate a trendline for a graph?

Google is not being my friend - it's been a long time since my stats class in college...I need …

c# math graph
Export a graph to .eps file with R

How do I export a graph to an .eps format file? I typically export my graphs to a .pdf file (…

r graph eps
Java: how to represent graphs?

I'm implementing some algorithms to teach myself about graphs and how to work with them. What would you recommend is …

java graph