summaryrefslogtreecommitdiff
path: root/networkx/convert.py
Commit message (Expand)AuthorAgeFilesLines
* Use scipy.sparse array datastructure (#6037)Jarrod Millman2022-10-121-1/+1
* Update tests in base class and simple rename in convert.py (#5848)Dan Schult2022-07-151-4/+4
* remove to/from_scipy_sparse_matrix (#5779)Matt Schwennesen2022-07-011-4/+4
* Use isort with pre-commit to enforce import guidelines (#5659)Mridul Seth2022-06-021-1/+2
* More numpy.matrix cleanups for NX2.7 (#5319)Ross Barnowski2022-02-121-3/+2
* A few `np.matrix` cleanups (#5218)Ross Barnowski2021-12-091-2/+2
* Change exception varname e to err (#5130)Dan Schult2021-10-151-18/+18
* add special processing of `multigraph_input` upon graph init (#4823)Dan Schult2021-05-271-6/+11
* Use matrix multiplication operator (#4390)Jarrod Millman2020-11-251-2/+2
* Improve test coverage of convert module (#4306)Ross Barnowski2020-11-241-8/+8
* Address comments from code review.Ross Barnowski2020-11-121-4/+6
* Minor touchups to docstringRoss Barnowski2020-11-051-6/+6
* Update docstring of to_dict_of_dicts.Ross Barnowski2020-11-051-6/+85
* Simplify importsJarrod Millman2020-09-151-2/+1
* Format python in docstrings (#4168)Jarrod Millman2020-08-191-7/+7
* MAINT: Switch to abc-based isinstance checks in to_networkx_graph (#4136)Ross Barnowski2020-08-071-11/+14
* use raise from for exceptions in to_networkx_graph (#4009)anentropic2020-06-211-16/+18
* allow set of edge nodes (#3907)Mattwmaster582020-04-151-2/+2
* Fix scipy deprecation warningsJarrod Millman2020-01-031-43/+61
* Remove boiler plate from top of modulesJarrod Millman2019-11-111-11/+3
* Replacing `Return` to `Returns` in docs for functions (#3301)Moradnejad2019-02-181-6/+6
* converter node_attr_dict override fixed. (#3215)Ramil Nugmanov2018-10-301-1/+5
* Enable create_using to be a constructor (#3004)Dan Schult2018-06-171-33/+16
* Misc. typos (#2872)luzpaz2018-02-141-1/+1
* Comply with pep8Jarrod Millman2017-08-171-6/+3
* Comply with pep8Jarrod Millman2017-08-131-11/+8
* Add testsJarrod Millman2017-08-121-14/+15
* Create separate functions for df as edge-lists and adjacency matricesJarrod Millman2017-08-121-5/+12
* Simplify base classes. (#2604)Dan Schult2017-08-121-2/+2
* Fix call to `from_pandas_dataframe` from `to_networkx_graph` (#2490)Jarrod Millman2017-06-301-105/+110
* Move data structure to private names and replace with readonly structures (#2...Dan Schult2017-06-261-1/+1
* Add graph view classes for nodes/edge/degrees (#2458)Dan Schult2017-06-131-3/+4
* Removes unnecessary convert_to_(un)directed funcJeffrey Finkelstein2016-09-211-10/+0
* Update add_edge calls to use update for edge attributes.thegreathippo2016-05-011-1/+2
* Change sphinx config to improve parametersDan Schult2016-03-081-1/+2
* Examples and doc changesDan Schult2016-01-111-2/+2
* to_networkx_graph needs .update() instead of new dictDan Schult2015-08-071-4/+4
* Update adjacency_iter() method to adjacency() and remove adjacency_list()Mridul Seth2015-07-031-2/+2
* Minor docstring updates.chebee7i2015-01-051-6/+6
* added Pandas Dataframe into to_networkx_graphJamal2015-01-051-0/+13
* Simplifies _prep_create_using functionjfinkels2014-12-051-8/+6
* Split matrix conversion functions into new moduleAric Hagberg2013-11-121-508/+11
* Merge pull request #992 from hagberg/hashrandom-test-fixesAric Hagberg2013-11-081-2/+6
|\
| * Fix tests that fail due to hash randomizationAric Hagberg2013-10-231-2/+6
* | Merge pull request #976 from chebee7i/fw_bugAric Hagberg2013-11-081-35/+73
|\ \ | |/ |/|
| * Revert commits 1bca2d1 and 31b5b70.chebee7i2013-10-241-57/+58
| * Handle nonzero edges via masked arrays.chebee7i2013-10-241-46/+43
| * Allow 'weight' to be callable.chebee7i2013-10-241-12/+14
| * Clarify description of `weight` parameter.chebee7i2013-10-241-1/+2
| * Make `nonedge` default to 0.0. Add more comments.chebee7i2013-10-241-18/+40