<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/networkx.git/networkx/algorithms/centrality, branch nx-sparse</title>
<subtitle>github.com: networkx/networkx.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/'/>
<entry>
<title>added examples to degree_alg.py (#5644)</title>
<updated>2022-07-05T11:56:53+00:00</updated>
<author>
<name>Lukong123</name>
<email>70434467+Lukong123@users.noreply.github.com</email>
</author>
<published>2022-07-05T11:56:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=b8d1438e4ea3d8190c650110b3b7d7c141224842'/>
<id>b8d1438e4ea3d8190c650110b3b7d7c141224842</id>
<content type='text'>
* added example on degree centrality

* added example on in degree centrality

* added example on out degree centrality

* added opening braces</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* added example on degree centrality

* added example on in degree centrality

* added example on out degree centrality

* added opening braces</pre>
</div>
</content>
</entry>
<entry>
<title>Update distance parameter description. (#5819)</title>
<updated>2022-06-29T19:28:50+00:00</updated>
<author>
<name>Ross Barnowski</name>
<email>rossbar@berkeley.edu</email>
</author>
<published>2022-06-29T19:28:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=6ef044b41a27eeddec3c67afcf67b4c6826de4b6'/>
<id>6ef044b41a27eeddec3c67afcf67b4c6826de4b6</id>
<content type='text'>
* Update distance parameter description.

Update the description of the  parameter in the
closeness_centrality function to note that by default, the edge
distances (weights) are assumed to be 1, and that no input
validation is performed.

* Fix styling.

* Update networkx/algorithms/centrality/closeness.py

Co-authored-by: Dan Schult &lt;dschult@colgate.edu&gt;

* Make black happy.

Co-authored-by: Dan Schult &lt;dschult@colgate.edu&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Update distance parameter description.

Update the description of the  parameter in the
closeness_centrality function to note that by default, the edge
distances (weights) are assumed to be 1, and that no input
validation is performed.

* Fix styling.

* Update networkx/algorithms/centrality/closeness.py

Co-authored-by: Dan Schult &lt;dschult@colgate.edu&gt;

* Make black happy.

Co-authored-by: Dan Schult &lt;dschult@colgate.edu&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Remove deprecated function edge_betweeness (#5765)</title>
<updated>2022-06-21T12:50:06+00:00</updated>
<author>
<name>Juanita Gomez</name>
<email>juanitagomezr2112@gmail.com</email>
</author>
<published>2022-06-21T12:50:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=ec4171be07bd6ffdced927acbc05b9eb323e9f3f'/>
<id>ec4171be07bd6ffdced927acbc05b9eb323e9f3f</id>
<content type='text'>
* Remove deprecated function edge_betweeness

* [ci skip] remove from release doc validation script.

Co-authored-by: Ross Barnowski &lt;rossbar@berkeley.edu&gt;
Co-authored-by: Mridul Seth &lt;seth.mridul@gmail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Remove deprecated function edge_betweeness

* [ci skip] remove from release doc validation script.

Co-authored-by: Ross Barnowski &lt;rossbar@berkeley.edu&gt;
Co-authored-by: Mridul Seth &lt;seth.mridul@gmail.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Remove betweenness_centrality_source (#5786)</title>
<updated>2022-06-16T08:20:48+00:00</updated>
<author>
<name>Dilara Tekinoglu</name>
<email>dilaranurtuncturk@gmail.com</email>
</author>
<published>2022-06-16T08:20:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=2cd33de59b1532e06a15856513e321ee7a5c0d3d'/>
<id>2cd33de59b1532e06a15856513e321ee7a5c0d3d</id>
<content type='text'>
Remove betweenness_centrality_source in favor of preferred name,
betweenness_centrality_subset.

Co-authored-by: dtuncturk &lt;dilaramemis@sabanciuniv.edu&gt;
Co-authored-by: Ross Barnowski &lt;rossbar@berkeley.edu&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Remove betweenness_centrality_source in favor of preferred name,
betweenness_centrality_subset.

Co-authored-by: dtuncturk &lt;dilaramemis@sabanciuniv.edu&gt;
Co-authored-by: Ross Barnowski &lt;rossbar@berkeley.edu&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: Cleanup centrality module, remove unused variables (#5308)</title>
<updated>2022-06-04T17:22:18+00:00</updated>
<author>
<name>Mridul Seth</name>
<email>seth.mridul@gmail.com</email>
</author>
<published>2022-06-04T17:22:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=ddb1cb663d1c0be293aaa4d4284eab641255014f'/>
<id>ddb1cb663d1c0be293aaa4d4284eab641255014f</id>
<content type='text'>
* MAINT: Cleanup centrality module, remove unused variables

* make isort linter happy

* MAINT: make the loop more readable

Co-authored-by: Dan Schult &lt;dschult@colgate.edu&gt;

* make black happy

* Use a different name for internal function variable

Co-authored-by: Jarrod Millman &lt;jarrod.millman@gmail.com&gt;

* rename closeness_cen to closeness_dict

* minor cleanup in current_flow_betweenness and group

Co-authored-by: Dan Schult &lt;dschult@colgate.edu&gt;
Co-authored-by: Jarrod Millman &lt;jarrod.millman@gmail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* MAINT: Cleanup centrality module, remove unused variables

* make isort linter happy

* MAINT: make the loop more readable

Co-authored-by: Dan Schult &lt;dschult@colgate.edu&gt;

* make black happy

* Use a different name for internal function variable

Co-authored-by: Jarrod Millman &lt;jarrod.millman@gmail.com&gt;

* rename closeness_cen to closeness_dict

* minor cleanup in current_flow_betweenness and group

Co-authored-by: Dan Schult &lt;dschult@colgate.edu&gt;
Co-authored-by: Jarrod Millman &lt;jarrod.millman@gmail.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title> Use isort with pre-commit to enforce import guidelines (#5659)</title>
<updated>2022-06-02T15:54:09+00:00</updated>
<author>
<name>Mridul Seth</name>
<email>seth.mridul@gmail.com</email>
</author>
<published>2022-06-02T15:54:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=5c0b11afb4c0882a070d522ef3fa41482ba935d3'/>
<id>5c0b11afb4c0882a070d522ef3fa41482ba935d3</id>
<content type='text'>
* Add isort to pre-commit

* Run isort on all python files (except __init__.py ones)</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Add isort to pre-commit

* Run isort on all python files (except __init__.py ones)</pre>
</div>
</content>
</entry>
<entry>
<title>Remove redundant py2 numeric conversions (#5661)</title>
<updated>2022-05-31T18:24:18+00:00</updated>
<author>
<name>Mridul Seth</name>
<email>seth.mridul@gmail.com</email>
</author>
<published>2022-05-31T18:24:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=2a05ccdb07cff88e56661dee8a9271859354027f'/>
<id>2a05ccdb07cff88e56661dee8a9271859354027f</id>
<content type='text'>
* Remove redundant float conversion

* Remove redundant int conversion

* Use integer division

Co-authored-by: Miroslav Šedivý &lt;6774676+eumiro@users.noreply.github.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Remove redundant float conversion

* Remove redundant int conversion

* Use integer division

Co-authored-by: Miroslav Šedivý &lt;6774676+eumiro@users.noreply.github.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>added example to closeness.py (#5645)</title>
<updated>2022-05-24T13:40:15+00:00</updated>
<author>
<name>Lukong123</name>
<email>70434467+Lukong123@users.noreply.github.com</email>
</author>
<published>2022-05-24T13:40:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=58b63cb57cd1747c23611ee0b46991a5be2db751'/>
<id>58b63cb57cd1747c23611ee0b46991a5be2db751</id>
<content type='text'>
* added example on closeness

* docstring improvement</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* added example on closeness

* docstring improvement</pre>
</div>
</content>
</entry>
<entry>
<title>Add examples &amp; improve documentation of voterank (#5500)</title>
<updated>2022-05-21T02:36:33+00:00</updated>
<author>
<name>Dilara Tekinoglu</name>
<email>dilaranurtuncturk@gmail.com</email>
</author>
<published>2022-05-21T02:36:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=b555526039a132a8750a2ef9fde8482908ad3f6e'/>
<id>b555526039a132a8750a2ef9fde8482908ad3f6e</id>
<content type='text'>
* Add examples &amp; improve documentation of voterank

* Run black for autoformatting

* Fix minor typo

* Change example (add edges from the list instead of one by one)

Co-authored-by: Ross Barnowski &lt;rossbar@berkeley.edu&gt;

* Revert to previous wording

* Re-format second example

* minor formatting nits.

Co-authored-by: dtuncturk &lt;dilaramemis@sabanciuniv.edu&gt;
Co-authored-by: Ross Barnowski &lt;rossbar@berkeley.edu&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Add examples &amp; improve documentation of voterank

* Run black for autoformatting

* Fix minor typo

* Change example (add edges from the list instead of one by one)

Co-authored-by: Ross Barnowski &lt;rossbar@berkeley.edu&gt;

* Revert to previous wording

* Re-format second example

* minor formatting nits.

Co-authored-by: dtuncturk &lt;dilaramemis@sabanciuniv.edu&gt;
Co-authored-by: Ross Barnowski &lt;rossbar@berkeley.edu&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Fix missing backticks (#5381)</title>
<updated>2022-03-09T11:58:13+00:00</updated>
<author>
<name>Matthias Bussonnier</name>
<email>bussonniermatthias@gmail.com</email>
</author>
<published>2022-03-09T11:58:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=0ce72858168a8ece6b55f695677f4be80f144aff'/>
<id>0ce72858168a8ece6b55f695677f4be80f144aff</id>
<content type='text'>
* Fix missing backticks

* one more backticks</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Fix missing backticks

* one more backticks</pre>
</div>
</content>
</entry>
</feed>
