Metadata-Version: 2.4
Name: crispdm-data-understanding
Version: 0.1.0
Summary: Exploratory analysis helpers and Streamlit app for the CRISP-DM Data Understanding stage.
Author: Personal ASA
Keywords: crisp-dm,eda,streamlit
Classifier: Programming Language :: Python :: 3
Classifier: License :: Other/Proprietary License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: numpy>=1.24
Requires-Dist: pandas>=1.5
Requires-Dist: matplotlib>=3.7
Requires-Dist: seaborn>=0.12
Provides-Extra: app
Requires-Dist: streamlit>=1.30; extra == "app"

# CRISP-DM – Data Understanding

Funciones de análisis exploratorio (EDA) y una app de Streamlit
para revisar el dataset de entrenamiento.

Incluye:

- `dataset_overview`, `missing_values_summary`, `correlation_heatmap`, etc.
- `app.py` que construye la interfaz interactiva (`pip install .[app]`).

Instalación local:

```bash
pip install -e packages/data_understanding
```

Para correr la app (modo desarrollo):

```bash
pip install -e packages/data_understanding[app]
python -m streamlit run data_understanding_app.py
```
