25 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
64
views
interactive matplotlib as webapplication
I am currently trying to create an interactive web-app to display and work with multi-graphs, ideally with streamlit. I have a first working version based on matplotlib (inspired by the netgraph ...
0
votes
1
answer
72
views
Matplotlib figure with 2 animation subplots: how to update both [closed]
I'm trying to vizualize simulation results with a figure containing 2 subplots using matplotlib pyplot. Both should contain animation: one uses netgraph library (it's a graph with nodes showing flows ...
2
votes
1
answer
109
views
Netgraph Animation — how to display frame numbers
I'm trying to add a frame number to a simulation visualization modified from here. Is there any simple way to add a frame number to this animation so that it displays as a part of the plot title?
...
0
votes
1
answer
69
views
Netgraph animation example not updating in Jupyter notebook
I'm trying to run an example animation for the Netgraph library in Jupyter notebook as shown here
import numpy as np
import matplotlib.pyplot as plt
from matplotlib.animation import FuncAnimation
...
0
votes
1
answer
50
views
setting seed in multigraph function from netgraph module in python
can we set seed into multigraph function from netgraph module in python? i have tried set seed with this code but it keeps changing everytime i run the code.
import networkx as nx
import matplotlib....
0
votes
1
answer
65
views
How to match the size of InteractiveGraph with tkinter window?
I'm working on some code using python netgraph. I've got it to work with tkinter, so the window is visible inside tkinter, but I wanted it to match the size of the tkinter window.
I've tried scaling ...
1
vote
1
answer
81
views
Is there an option to add two labels each at the other end of edge in netgraph?
I am working on the app to draw the computer network topology. I've wanted to use the Python netgraph library because it adds the possibility of interaction with the network.
I've tried to edit the ...
0
votes
1
answer
20
views
Size of EditableGraph
In NetGraph's EditableGraph, the drawing figure appears to be enclosed in a square. How can we extend the drawing limit of the figure along the horizontal-axis? Thank you.
1
vote
1
answer
65
views
Node border width control in Netgraph
I want to modify the width of the node border in Netgraph (Python) in order to increase or decrease it. I unfortunately do not find the parameter controlling the width of the border node. Here is as ...
0
votes
0
answers
53
views
Fixed node size in Netgraph
I use Netgraph (EditableGraph) to represent networks. However, when the window is scaled, the nodes become disproportionately large compared to the labels, which remain the same size. This results ...
0
votes
1
answer
100
views
Embedding NetGraph EditableGraph in PyQt5
I try to embed the EditableGraph function into a PyQt5 application. I developed the following program for testing, based on solutions found online.
from PyQt5 import QtWidgets, QtCore
from matplotlib....
0
votes
0
answers
110
views
self-loop labeling problem using EditableGraph
I plan to use EditableGraph of Netgraph as the foundation of my application. However, I have encountered the following issue. Let us consider the following program that draws a small graph.
import ...
0
votes
1
answer
89
views
How to retrieve information on a graph while building it using EditableGraph of netgraph
I'm new to Qt and Netgraph, and I'd like to develop a Qt application with graph construction at its core. NetGraph's EditableGraph function meets my expectations and seems great. However, I also need ...
1
vote
1
answer
365
views
Netgraph dot layout avoiding node labels overlap: howto?
I am generating simple syntactic dependecies trees such as in the following example:
Best layout is "dot" but on the top row things get very crowded. Is there any parameter or other way to ...
0
votes
1
answer
588
views
Scalable MatPlotLib Figure with PyQt window
Since my previous question here at StackOverflow I was able to make my plot touch the edges of my Figure:
However as you can see it does not keep the PyQt Window scaling, I do not know how to make ...