summaryrefslogtreecommitdiff
path: root/networkx/relabel.py
Commit message (Expand)AuthorAgeFilesLines
* Update mapping logic in `relabel_nodes` (#5912)Ross Barnowski2022-08-171-10/+4
* Allow classes to relabel nodes -- casting (#5903)Dan Schult2022-08-011-2/+6
* Update relabel.py to preserve node order (#5258)Sultan Orazbayev2022-06-281-5/+6
* Change exception varname e to err (#5130)Dan Schult2021-10-151-2/+2
* Allow relabel_nodes mapping to have non-node keys that get ignored (#4466)Dan Schult2020-12-191-4/+4
* Improve relabel coverage, tweak docstrings (#4299)Stefan van der Walt2020-10-291-1/+1
* Format python in docstrings (#4168)Jarrod Millman2020-08-191-5/+5
* relabel_nodes now preserves edges in multigraphs (#4066)Nikos Chan2020-08-141-3/+55
* Fix exception causes and messages all over the codebase (#4015)Ram Rachum2020-07-051-4/+4
* Fix scipy deprecation warningsJarrod Millman2020-01-031-22/+33
* Convert %-format to fstringJarrod Millman2020-01-011-2/+2
* Remove boiler plate from top of modulesJarrod Millman2019-11-111-6/+0
* Update copyrightJarrod Millman2019-03-301-1/+1
* Replacing `Return` to `Returns` in docs for functions (#3301)Moradnejad2019-02-181-1/+1
* Simplify the Graphview and SubGraphView system (#3073)Dan Schult2018-07-201-1/+1
* Added clarifying comment about relabelling nodes in situations where … (#2857)Lewis Robbins2018-02-031-0/+4
* Pep8 fixesJarrod Millman2018-01-201-1/+1
* Update copyrightJarrod Millman2018-01-201-1/+1
* Remove automatic processing of G.name attribute (#2829)Dan Schult2018-01-141-4/+0
* Dictionary comprehensions from #1700 merged conflicts (#2768)Dan Schult2017-11-251-3/+3
* Replace __class__ with fresh_copy in G.reverse and elsewhere (#2649)Dan Schult2017-09-071-4/+3
* Comply with pep8Jarrod Millman2017-08-171-37/+35
* Simplify base classes. (#2604)Dan Schult2017-08-121-3/+3
* Next attempt to meld graphviews with base classes (#2593)Dan Schult2017-08-121-1/+1
* Refactor set_node_attributes() and set_edge_attributes() (#2553)Michael E. Rose2017-07-261-2/+2
* Ensure _relabel_copy() respects node order of OrderedGraphs (#2488)Jarrod Millman2017-06-281-28/+30
* Update relabel_nodes docsDan Schult2017-06-261-3/+8
* Move data structure to private names and replace with readonly structures (#2...Dan Schult2017-06-261-1/+1
* Handle graph name attribute in relabel_nodesDan Schult2016-05-181-1/+2
* Modified all add_node, add_edge, and add_edges_from methods.thegreathippo2016-04-261-1/+1
* Clarifies some examples for relabel_nodes().Jeffrey Finkelstein2016-03-221-26/+43
* topolgical_sort, lexicographical_topological_sortNeil2015-08-311-1/+1
* Remove degree_iter(),now degree() returns an integer for single node and iter...Mridul Seth2015-06-271-2/+2
* Remove edges_iter, G.edges() now returns an iterator instead of listMridul Seth2015-06-171-2/+2
* Makes Graph.nodes() return iterator instead of listJeffrey Finkelstein2015-06-111-13/+9
* Fixes issue #1539 Bug in relabel_nodes for isolated nodesDan Schult2015-05-221-0/+2
* bugfix: use ternary operator to replace node with self-loop in-placeIoannis Filippidis2014-10-311-4/+4
* MAINT: use reverse=True for some topological_sort callsalex2014-02-181-2/+1
* PEP-8 cleanupAric Hagberg2013-08-251-36/+36
* Document that node relabling uses consecutive integersAric Hagberg2013-08-251-3/+4
* Simplify notes and formatting of code/docsAric Hagberg2013-01-211-36/+31
* whitespace cleanupAric Hagberg2013-01-201-25/+25
* Set relabel mapping as node attributes.Aric Hagberg2013-01-201-13/+9
* Fix/adjust/remove/modify tests that depend on dictionary ordering.Aric Hagberg2012-07-081-3/+4
* Add check for self-loop to fix relabel-in-place fail.Aric Hagberg2012-01-101-6/+8
* Fix doc for relabel functions.Aric Hagberg2011-03-271-1/+0
* Fix for relabel toposort to work with Python3.Aric Hagberg2011-03-261-1/+2
* Add more tests for relabel.Aric Hagberg2011-03-241-14/+8
* Add copy=True|False to relabel nodes in place.Aric Hagberg2011-03-221-0/+217