├── .darglint ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── .travis.yml ├── LICENSE ├── README.md ├── cpnet ├── BE.py ├── CPAlgorithm.py ├── Cucuringu.py ├── Divisive.py ├── KM_ER.py ├── KM_config.py ├── Lip.py ├── MINRES.py ├── Rombach.py ├── Rossa.py ├── Surprise.py ├── __init__.py ├── adam.py ├── qstest.py └── utils.py ├── data ├── edge-table-airport.csv ├── ent.moreno_blogs_blogs.blog.orientation ├── example_edge_list.dat ├── meta.moreno_blogs_blogs ├── node-table-airport.csv └── out.moreno_blogs_blogs ├── docs ├── Makefile ├── make.bat └── source │ ├── conf.py │ ├── cpnet.rst │ ├── index.rst │ └── modules.rst ├── examples ├── How_to_use_cpnet.ipynb ├── README.txt └── example.py ├── requirements.txt ├── scripts ├── generate-airport-net.py ├── meta.yaml ├── upload_conda.sh └── upload_pip.sh ├── setup.py └── tests ├── example_edge_list.txt ├── generate-network.py ├── test-draw.py ├── test-poliblog.py └── test.py /.darglint: -------------------------------------------------------------------------------- 1 | [darglint] 2 | docstring_style=numpy 3 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/README.md -------------------------------------------------------------------------------- /cpnet/BE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/cpnet/BE.py -------------------------------------------------------------------------------- /cpnet/CPAlgorithm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/cpnet/CPAlgorithm.py -------------------------------------------------------------------------------- /cpnet/Cucuringu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/cpnet/Cucuringu.py -------------------------------------------------------------------------------- /cpnet/Divisive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/cpnet/Divisive.py -------------------------------------------------------------------------------- /cpnet/KM_ER.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/cpnet/KM_ER.py -------------------------------------------------------------------------------- /cpnet/KM_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/cpnet/KM_config.py -------------------------------------------------------------------------------- /cpnet/Lip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/cpnet/Lip.py -------------------------------------------------------------------------------- /cpnet/MINRES.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/cpnet/MINRES.py -------------------------------------------------------------------------------- /cpnet/Rombach.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/cpnet/Rombach.py -------------------------------------------------------------------------------- /cpnet/Rossa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/cpnet/Rossa.py -------------------------------------------------------------------------------- /cpnet/Surprise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/cpnet/Surprise.py -------------------------------------------------------------------------------- /cpnet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/cpnet/__init__.py -------------------------------------------------------------------------------- /cpnet/adam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/cpnet/adam.py -------------------------------------------------------------------------------- /cpnet/qstest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/cpnet/qstest.py -------------------------------------------------------------------------------- /cpnet/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/cpnet/utils.py -------------------------------------------------------------------------------- /data/edge-table-airport.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/data/edge-table-airport.csv -------------------------------------------------------------------------------- /data/ent.moreno_blogs_blogs.blog.orientation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/data/ent.moreno_blogs_blogs.blog.orientation -------------------------------------------------------------------------------- /data/example_edge_list.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/data/example_edge_list.dat -------------------------------------------------------------------------------- /data/meta.moreno_blogs_blogs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/data/meta.moreno_blogs_blogs -------------------------------------------------------------------------------- /data/node-table-airport.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/data/node-table-airport.csv -------------------------------------------------------------------------------- /data/out.moreno_blogs_blogs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/data/out.moreno_blogs_blogs -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/cpnet.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/docs/source/cpnet.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/docs/source/modules.rst -------------------------------------------------------------------------------- /examples/How_to_use_cpnet.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/examples/How_to_use_cpnet.ipynb -------------------------------------------------------------------------------- /examples/README.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/examples/example.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/generate-airport-net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/scripts/generate-airport-net.py -------------------------------------------------------------------------------- /scripts/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/scripts/meta.yaml -------------------------------------------------------------------------------- /scripts/upload_conda.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/scripts/upload_conda.sh -------------------------------------------------------------------------------- /scripts/upload_pip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/scripts/upload_pip.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/setup.py -------------------------------------------------------------------------------- /tests/example_edge_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/tests/example_edge_list.txt -------------------------------------------------------------------------------- /tests/generate-network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/tests/generate-network.py -------------------------------------------------------------------------------- /tests/test-draw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/tests/test-draw.py -------------------------------------------------------------------------------- /tests/test-poliblog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/tests/test-poliblog.py -------------------------------------------------------------------------------- /tests/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skojaku/core-periphery-detection/HEAD/tests/test.py --------------------------------------------------------------------------------