Metadata-Version: 2.1
Name: geodetector
Version: 0.0.1
Summary: A small example package
Project-URL: Homepage, https://github.com/lvyaqiao/geodetector
Project-URL: Bug Tracker, https://github.com/lvyaqiao/geodetector/issues
Author-email: lvyaqiao <lvyaqiao@126.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# GeoDetector

This is a simple GeoDetector which can be used to the determinant
power of a covariate X of Y.

here is a basic example
```python
df = load_disease()
gd = GeoDetector(["type", "region", "level"], "incidence", df)
result = gd.interaction_detect()
result.to_excel("q.xlsx")
```
