diff options
author | Yuto Yamaguchi <yamaguchiyuto@users.noreply.github.com> | 2018-01-28 22:12:28 +0900 |
---|---|---|
committer | Dan Schult <dschult@colgate.edu> | 2018-01-28 08:12:28 -0500 |
commit | 39866aa66e8ae7999348f35d75616b76a9d453ba (patch) | |
tree | dece099c0e780b51fc4c94a6238283e01add3607 /doc | |
parent | b22da6106736394fa7624c016c8734c960bf0699 (diff) | |
download | networkx-39866aa66e8ae7999348f35d75616b76a9d453ba.tar.gz |
Implement a module for node classification (#2848)
* Implement a module for node classification
* Fix tests
* Put helper functions inside the public function.
* Rename modules
* Fix examples
* Try imports
* Add a doc for node classification
* Add one test case
* Add skip annotation.
* Follow PEP8
* Follow PEP8 in test code
* Fix doctest violation
Diffstat (limited to 'doc')
-rw-r--r-- | doc/reference/algorithms/node_classification.rst | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/doc/reference/algorithms/node_classification.rst b/doc/reference/algorithms/node_classification.rst new file mode 100644 index 00000000..f8afa4df --- /dev/null +++ b/doc/reference/algorithms/node_classification.rst @@ -0,0 +1,23 @@ +*********** +Node Classification +*********** + +.. automodule:: networkx.algorithms.node_classification +.. currentmodule:: networkx + +Harmonic Function (HMN) +------------ +.. automodule:: networkx.algorithms.community.hmn +.. autosummary:: + :toctree: generated/ + + harmonic_function + + +Local and Global Consistency (LGC) +------------ +.. automodule:: networkx.algorithms.community.lgc +.. autosummary:: + :toctree: generated/ + + local_and_global_consistency |