summaryrefslogtreecommitdiff
path: root/examples/drawing/plot_directed.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix failing example due to mpl 3.6 colorbar. (#5994)Ross Barnowski2022-09-211-1/+1
|
* See matplotlb 3.6rc1 failure (#5937)Jarrod Millman2022-08-211-1/+1
| | | | | | | | | | | * See matplotlb 3.6rc1 failure * replace use of private class method to allow mpl v3.6 to work. * ensure ax exists before calling colorbar * Undo matplotlib pin Co-authored-by: Dan Schult <dschult@colgate.edu>
* Add seeds to gallery examples for reproducibility (#4276)Ross Barnowski2020-10-241-5/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Seed layout basic/plot_properties. * Seed simple path example * Switch node cmap example to deterministic layout * Seed layout in edge_colormap example * Seed graph gen and layout in ego_graph example * Seed random_geometric_graph example. * Seed layout and pad axes w/ tight_layout. * Seed and modify colors for directed example. * Seeded graph gen and layout * Switch to plasma colormap for better contrast on light bgnd * Seed layout and tight_layout sampson example * Seed and pad axes for unix email example * Seed graph gen and layout for erdos_renyi example * Seed graph gen and layout of degree_seq example * Seed layout of football example * Seed layout for krackhardt centrality example * Seed davis club example * Seed and use np alias in blockmodel example * Seed beam search example. * Seed random graph in eigenval example * Seed heavy metal layout and pad axes * Use deterministic layout for rgraph example * Seed layout for printgraph example. * Add seed to antigraph example. * Use single rng seed value. For examples with multiple uses of rng's (e.g. one for generating a random graph, and another for layout) use a single integer value as the seed for both. * Remove unnecessary submodule paths from examples.
* Update examplesJarrod Millman2019-11-111-6/+11
|
* Remove future imports needed by Py2Jarrod Millman2019-09-181-1/+0
|
* Add colorbar example for DiGraph edge colors (#2995)Dan Schult2018-06-021-0/+5
| | | fixes #2893
* Arrows as a plot example. (#2801)Rodrigo Dorantes-Gilardi2018-01-081-0/+35
* add a plot for directed graphs * add docstring * add larger node sizes * add alpha list to arrow example