backend
Matplotlib backend for raster graphics network visualization.
High-performance matplotlib implementation with optimized collections for efficient rendering. Supports both directed and undirected networks with curved edges, proper arrowheads, and comprehensive styling options.
MatplotlibBackend
¶
Bases: pathpyG.visualisations.plot_backend.PlotBackend
Matplotlib backend for network visualization with optimized rendering.
Uses matplotlib collections (EllipseCollection, LineCollection, PathCollection) for efficient batch rendering of network elements. Provides high-quality output with proper edge-node intersection handling and curved edge support.
Features
- Batch rendering via matplotlib collections
- Bezier curves for directed edges
- Automatic edge shortening to avoid node overlap
Example
Plot a simple directed network with curved edges:
import pathpyG as pp
edges = [("A", "B"), ("B", "C"), ("C", "A")]
g = pp.Graph.from_edge_list(edges)
pp.plot(g, backend="matplotlib")
Performance Optimization
Uses collections instead of individual plot calls for 10-100x faster rendering on networks with many edges.
Source code in src/pathpyG/visualisations/_matplotlib/backend.py
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 | |
__init__
¶
Initialize matplotlib backend with plot validation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
plot
|
pathpyG.visualisations.pathpy_plot.PathPyPlot
|
PathPyPlot instance containing network data |
required |
show_labels
|
bool
|
Whether to display node labels |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
If plot type not supported by matplotlib backend |
Source code in src/pathpyG/visualisations/_matplotlib/backend.py
add_directed_edges
¶
Render directed edges using Bezier curves with arrowheads.
Creates curved edges using quadratic Bezier curves and adds proportional arrowheads. Handles edge shortening and automatic fallback to straight edges when curves would be too short.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
source_coords
|
Source node coordinates array |
required | |
target_coords
|
Target node coordinates array |
required | |
ax
|
Matplotlib axes for rendering |
required | |
size_factor
|
Scaling factor for node size calculations |
required |
Curve Limitations
Falls back to straight edges when arrowheads would be too large relative to edge length to maintain visual clarity.
Source code in src/pathpyG/visualisations/_matplotlib/backend.py
add_undirected_edges
¶
Render undirected edges using LineCollection for efficiency.
Computes edge shortening to prevent overlap with nodes and renders all edges in a single matplotlib LineCollection for optimal performance.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
source_coords
|
Source node coordinates array |
required | |
target_coords
|
Target node coordinates array |
required | |
ax
|
Matplotlib axes for rendering |
required | |
size_factor
|
Scaling factor for node size calculations |
required |
Edge Shortening
Automatically shortens edges by node radius to create clean visual separation between edges and node boundaries.
Source code in src/pathpyG/visualisations/_matplotlib/backend.py
get_arrowhead
¶
Generate triangular arrowhead paths for directed edges.
Creates proportional arrowheads at curve endpoints using tangent vectors for proper orientation. Arrowhead size scales with edge width for consistent visual appearance across different edge weights.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
vertices
|
Bezier curve vertices list for tangent calculation |
required | |
head_length
|
Base arrowhead length (scaled by edge size) |
required | |
head_width
|
Base arrowhead width (scaled by edge size) |
0.02
|
Returns:
| Name | Type | Description |
|---|---|---|
tuple |
(vertices, codes) for matplotlib Path objects |
Proportional Scaling
Arrowhead dimensions automatically scale with edge width to maintain consistent visual proportions across different edge weights in the same network.
Source code in src/pathpyG/visualisations/_matplotlib/backend.py
get_bezier_curve
¶
Generate quadratic Bezier curve paths for directed edges.
Computes control points for smooth curved edges with automatic shortening to accommodate node sizes and arrowheads. Uses perpendicular offset for curve control points based on curvature configuration.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
source_coords
|
Start points (x, y) for all edges |
required | |
target_coords
|
End points (x, y) for all edges |
required | |
source_node_size
|
Source node radii for edge shortening |
required | |
target_node_size
|
Target node radii for edge shortening |
required | |
head_length
|
Arrowhead length for target-end shortening |
required | |
shorten
|
Additional shortening amount to prevent visual overlap |
0.005
|
Returns:
| Name | Type | Description |
|---|---|---|
tuple |
(vertices, codes) for matplotlib Path objects |
Bezier Curve Mathematics
Uses quadratic Bezier curves with control point positioned perpendicular to edge midpoint. Curvature parameter controls the distance of control point from edge midpoint.
Fallback Behavior
Returns straight line paths when curves would be too short for proper arrowhead placement.
Source code in src/pathpyG/visualisations/_matplotlib/backend.py
280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 | |
save
¶
Save plot to file with automatic format detection.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
filename
|
str
|
Output file path (format inferred from extension) |
required |
show
¶
Display plot in interactive matplotlib window.
Opens plot in default matplotlib backend for interactive exploration.
to_fig
¶
Generate complete matplotlib figure with network visualization.
Creates figure with proper sizing, renders edges and nodes using optimized collections, adds labels if enabled, and sets appropriate axis limits.
Returns:
| Name | Type | Description |
|---|---|---|
tuple |
tuple[matplotlib.pyplot.Figure, matplotlib.pyplot.Axes]
|
(Figure, Axes) matplotlib objects ready for display/saving |
Rendering Pipeline
- Setup: Create figure with configured dimensions and DPI
- Edges: Render using LineCollection (undirected) or PathCollection (directed)
- Nodes: Render using EllipseCollection for precise sizing
- Labels: Add text annotations at node centers
- Layout: Set axis limits with margin configuration
Source code in src/pathpyG/visualisations/_matplotlib/backend.py
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 | |