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
4
votes
1 answer

reading nodes and edges from two distinct csv files using Force Layout

I have a problem when trying to display a graph using the force layout. I use two csv files, one for vertices and one for edges. I'm not sure, but I think that as the d3.csv method is asynchronous, and I'm using two of them, I need to insert one…
4
votes
2 answers

Which is the most lightweight image format for converting graphviz to images

I am writing graphviz files using a program and generating png figures using dot. Sometimes I end up with such a large file which does not even load in eog (eye of gnome). Since my graph is only black and white, I was wondering what option should I…
Dilawar
  • 5,438
  • 9
  • 45
  • 58
4
votes
1 answer

Nesting nodes in GraphViz

I'm trying to draw bigraphs in GraphViz (something like this) Is it possible to nest nodes directly in GraphViz? If not is it possible to change the shape of a subgraph/cluster? I have found a post about how to import images of graphs into nodes but…
jhoyla
  • 1,191
  • 1
  • 9
  • 26
3
votes
1 answer

Graphistry: how to color nodes using values from a column

I have a dataframe having columns Source Target Label_S Weight car airplane 0.5 0.2 car train 0.5 0.5 car bike 0.5 0.2 bike motorbike 1 0.7 bike car …
Math
  • 191
  • 2
  • 5
  • 19
3
votes
0 answers

Pyvis: how do I add a title/heading to the graph animation

I am using Pyvis to visualize big network graphs. I would like to generate graphs with certain headings and then save them as jpg or png images. However, I don't see any such option in the documentation. There is a heading parameter for the class…
winawer
  • 163
  • 10
3
votes
1 answer

Rendering Graphviz in Power BI

I have anaconda installed on my laptop which I usually use to carry out data analysis. I am new to Power BI. Using Graphviz, I have the following image Using the Python Scripting in Power BI and the same code I use in anaconda, I have tried to show…
3
votes
1 answer

Vega Visualization timeunit hoursminutes wrong order

I have the following issue: Everyday I have runs that are executed from a certain timestamp till another one. I want to show every run (beginning and end) on the same graph. I have the following code as test setup. { "$schema":…
3
votes
3 answers

What's the best way to visualize link attacks

I have a Networkx graph like the following image (image source) I perform edge attacks and observe the change in values at the node of the resulting subgraph. Example, If I attack edge (a,2): edge (a, 2) and (2, 1) will be removed. To explain a…
Natasha
  • 1,111
  • 5
  • 28
  • 66
3
votes
1 answer

Google Colab (tensorflow) aan visulizer

I am trying to visualise my neural network architecture on Google Colab. However, for some reason it is not producing any visual outcome. Could you tell me why my code does not work on Colab? I cannot use anything like python IDE. It has to be…
3
votes
2 answers

How to use torch.utils.tensorboard's SummaryWriter add_graph with dictionary outputs?

I have a PyTorch model that inherits from nn.Module and that has a forward method which returns a dictionary containing multiple tensors (stored as values). When I try to log this model to TensorBoard using torch.utils.tensorboard's…
Rylan Schaeffer
  • 1,945
  • 2
  • 28
  • 50
3
votes
1 answer

how to control size of arrow end points?

I'm drawing a graph with edges of varying widths. I need arrows to show the direction in these complex directional graphs. But is there a way to have the arrows be similar (or maximum) size and not purely based on the edge width? With very fat (and…
dcsan
  • 11,333
  • 15
  • 77
  • 118
3
votes
1 answer

How can i create audio visualizer in android studio?

I am creating sound recording app, and i need to create audio visualizer. I looked at this similar question, but there was only outdated libraries and i looked at several other questions, but i could not find the answer. Do you know about any open…
3
votes
0 answers

Visualizing dynamic 3D models with qml and qt

This question concerns an qt quick 2 application. In the qt/qml documentation, a lot information can be found on how to include a static model from an external source into a 3DScene. However, I did not find any examples on how to build and visualize…
Simon Marynissen
  • 223
  • 2
  • 10
3
votes
1 answer

How to visualize my training history in pytorch?

How do you guys visualize the training history of your pytorch model like in keras here. I have a pytorch trained model and I want to see the graph of its training. Can I do this using only matplotlib? If yes, can someone give me resources to…
user11140802
3
votes
4 answers

How to add two different magnitudes of point size in a ggplot bubbles chart?

I just encountered such graph attached where two colors of geom_point are used (I believe it is made by ggplot2). Similarly, I would like to have dots of one color to range from size 1 to 5, and have another color for a series of dots for the range…