Agricultural data auditing, visualization and explainable machine learning framework
Project description
Data Audit
data_audit is a powerful Pandas accessor that makes auditing, cleaning, and training ML models on tabular data seamless and intuitive.
Features
- Data Auditing: Rapidly scan dataframes for missing values, duplicates, and outliers (via IQR/Z-score/Custom Bounds).
- Auto-Fixing: Heal data in-place or generate suggestions.
- Anomaly Detection: Out-of-the-box anomaly detection via Isolation Forest.
- Embedded ML: Instantly train Regression or Classification models (Random Forest) directly on your dataframe.
- Explainability: SHAP integration for global feature importance and local predictions.
Installation
pip install data_audit
Quickstart
import pandas as pd
import data_audit
# Load your dataframe
df = pd.read_csv("data.csv")
# 1. Scan for issues
issues = df.audit.scan()
# 2. Fix issues automatically
df.audit.fix(mode='auto')
# 3. Train a Machine Learning Model on a target column
df.audit.ml.train(target="SalePrice")
# 4. Explain the model's global and local features
print(df.audit.ml.explain())
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file agro_data_intelligence-0.1.1.tar.gz.
File metadata
- Download URL: agro_data_intelligence-0.1.1.tar.gz
- Upload date:
- Size: 8.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3a0fe754e0756e2eeaeb2e1c887db7b2b1d22967bc2de2d572758dd425e1e90
|
|
| MD5 |
67660729bc7c6bab96bac58589d24cbe
|
|
| BLAKE2b-256 |
eebe3baed2733a5f55c80ee81205f5c131640e81a1c463b937eaf1fd44d528da
|
File details
Details for the file agro_data_intelligence-0.1.1-py3-none-any.whl.
File metadata
- Download URL: agro_data_intelligence-0.1.1-py3-none-any.whl
- Upload date:
- Size: 8.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d9916fc28e8e97677c560be39759d35c37970d9a76e9cf0911f3c58e8d1b6fdc
|
|
| MD5 |
3a23a92ac5d2017a415a06cdbca80bf7
|
|
| BLAKE2b-256 |
6e388624cdd6a228c54862924f9fb8e41716b0ba13021caba6009c046cce60da
|