Questions tagged [graph-visualization]

Graph visualisation is concerned with the rendering of mathematical graphs (collections of nodes and edges) on a screen, either theoretically or using an existing software package. Because most graphs are not "planar" (cannot be drawn without edges crossing), most graph visualisation algorithms must rely on heuristics that balance compactness against minimisation of edge crossings and that produce aesthetically appealing renderings.

Graph visualisation is concerned with the rendering of mathematical graphs (collections of nodes and edges) on a screen, either theoretically or using an existing software package. Because most graphs are not "planar" (cannot be drawn without edges crossing), most graph visualisation algorithms must rely on heuristics that balance compactness against minimisation of edge crossings and that produce aesthetically appealing renderings.


Related tags :

556 questions
0
votes
1 answer

Force Directed graph visualization: Is it possible to ensure certain nodes are closer to each other than others?

I'm working on this project where I'm analysing the "closeness" of a person with his Twitter friends and followers. The closeness is measured on the basis of how many times the subject mentions others or is mentioned by others. At the end of it I…
eku
  • 3,357
  • 3
  • 19
  • 20
0
votes
1 answer

How to create both-directed arrow with graphviz in C?

I'm trying to visualize a graph in C with the help of graphviz library. Graph is given by the adjacency matrix. The graph is directed and there is a problem. I work with the matrix and create an edge between n and m, and go on, but the edge between…
r3t
  • 53
  • 1
  • 6
-1
votes
1 answer

Does anyone know a good javascript library or a way to visualize predictions based on scores?

I have a table with many entities being predicted to other types of entities with a given confidence score. Ex: Entity1 -> type1; score:3.0 Entity2 -> type4; score:1.0 Entity1 -> type3; score:5.0 Entity3 -> type3; score:2.0 Entity1 -> type1;…
-1
votes
1 answer

Is there a tool to visualize a tree search in ORtools?

I am conceiving a global constraint with the ORtools solver, and to have a better understanding of my algorithm's behavior, i want to visualize the tree search generated by the solver. So Is there any tool to visualize an ORtools tree search ?
-1
votes
1 answer

Chart Visualization on Databricks

I am trying to create a chart with double axis showing both a percentage value and a absoute value. Just Like that: My issue here is that I cant find a way to choose the data type on the second image: Does anyone knows hot to?
dellaklo
  • 33
  • 1
  • 6
-1
votes
1 answer

Visualization graph by centralities

I computed betweenness centralities of nodes in python igraph and saved it in csv file. Now i want to visual it in python and igraph library or gephi ,by centralities. How can i do it?
-1
votes
1 answer

Build a Pie Chart

I am trying to build a pie chart using the different variable values that I created. However, I am not able to build an chart. It displays the following error: x must be 1D I'm new to Python and would appreciate any information. Thank you in…
-1
votes
1 answer

Plotting subdivided bar graph from a dataframe

I have a Dataframe as given below df = pd.DataFrame( { 'Dates': ['2021-04-11', '2021-06-08', '2021-06-08', '2021-06-09', '2021-06-10', '2021-07-18', '2021-07-18'], 'Results': ['Negative', 'Invalid', 'Negative','Negative','Negative',…
-1
votes
1 answer

Add one custom bar to a bar graph in R

I currently have a bar graph in R (ggplot2) with dollar amounts of an account on the y-axis and Year from 1990's to current on the x-axis. I'd like to add a line at the $50M point in the bar for 2017 - to indicate a cap. I was wondering if I can do…
Nina
  • 15
  • 5
-1
votes
1 answer

Show edges only on hover

I exported to a Sigma.js template from Gephi. I want the edges to be shown only when you hover over the node. I added this in network/config.json but it is not helping: "drawingProperties": { **"drawEdges": false,** "defaultEdgeType":…
yausername
  • 750
  • 5
  • 15
-1
votes
1 answer

d3.js x axis date range

i have some values in my csv file and i show a graph with values on y axis and dates on x axis. For first graph i have following values…
mstfky
  • 87
  • 1
  • 10
-1
votes
1 answer

Bar Chart and Unstructured Data

I have simple data on reading news by "Country" so two variables. I would like to make a horizontal bar chart that would show a percentage of answers "Read" news and "Otherwise" by country. Should I transform the data first or there is a special…
Laura
  • 306
  • 3
  • 12
-2
votes
1 answer

BreadCrumbs Navigation Visualization in hierarchical way

I have breadcrumbs like the following Home -> Patio, Lawn & Garden -> Farm & Ranch Home -> Clothing, Shoes & Jewelry -> Uniforms, Work & Safety etc... I need to build a tree visualization for entire breadcrumbs. I have around 45k such breadcrumb…
bigbounty
  • 16,526
  • 5
  • 37
  • 65
-2
votes
1 answer

How to transform custom graphic format to SVG graphics view via XSLT?

I have custom graphic format in xml-like format. I want to arrange nodes, textview and edges as is, definitely. My approach is to use XSL transformations from xml to svg. I'm new to svg format but worked a little with xsl previosuly. I wonder if…
Juriy
  • 565
  • 1
  • 5
  • 17
-3
votes
1 answer

Is it possible to draw a stacked density graph like this one in d3.js?

Is it possible to draw a stacked density graph like this one in d3.js? Reference: http://www.wired.com/2010/11/ff_311_new_york/
Iman
  • 473
  • 1
  • 4
  • 20
1 2 3
37
38