├── .gitignore ├── README.md ├── __pycache__ └── geodetector.cpython-38.pyc ├── dist ├── py_geodetector-0.1.3-py3-none-any.whl └── py_geodetector-0.1.3.tar.gz ├── example.ipynb ├── example_result.png ├── pyproject.toml └── src ├── __init__.py └── py_geodetector ├── __init__.py ├── example_data └── disease.csv └── geodetector.py /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | __pycache__ 3 | tempCodeRunnerFile.py 4 | ref -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djw-easy/GeoDetector/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/geodetector.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djw-easy/GeoDetector/HEAD/__pycache__/geodetector.cpython-38.pyc -------------------------------------------------------------------------------- /dist/py_geodetector-0.1.3-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djw-easy/GeoDetector/HEAD/dist/py_geodetector-0.1.3-py3-none-any.whl -------------------------------------------------------------------------------- /dist/py_geodetector-0.1.3.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djw-easy/GeoDetector/HEAD/dist/py_geodetector-0.1.3.tar.gz -------------------------------------------------------------------------------- /example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djw-easy/GeoDetector/HEAD/example.ipynb -------------------------------------------------------------------------------- /example_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djw-easy/GeoDetector/HEAD/example_result.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djw-easy/GeoDetector/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/py_geodetector/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djw-easy/GeoDetector/HEAD/src/py_geodetector/__init__.py -------------------------------------------------------------------------------- /src/py_geodetector/example_data/disease.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djw-easy/GeoDetector/HEAD/src/py_geodetector/example_data/disease.csv -------------------------------------------------------------------------------- /src/py_geodetector/geodetector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djw-easy/GeoDetector/HEAD/src/py_geodetector/geodetector.py --------------------------------------------------------------------------------