Metadata-Version: 2.4
Name: agridatasets
Version: 0.1.0
Summary: A curated collection of agricultural, agronomic, and livestock datasets for data analysis, statistical modeling, and machine learning research. Includes crop yield trials, soil Munsell mineral classifications, field uniformity experiments, forestry genetics, plant disease infestations, pesticide efficacy, biological pest controls, dairy cattle and broiler chicken development tracking, and more from curated R packages on CRAN.
Home-page: https://github.com/lightbluetitan/agridatasets-py
Author: Renzo Caceres Rossi
Author-email: Renzo Caceres Rossi <arenzocaceresrossi@gmail.com>
Maintainer-email: Renzo Caceres Rossi <arenzocaceresrossi@gmail.com>
License: MIT License
        
        Copyright (c) 2026 Renzo Caceres Rossi
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Project-URL: Bug Tracker, https://github.com/lightbluetitan/agridatasets-py/issues
Project-URL: Documentation, https://github.com/lightbluetitan/agridatasets-py
Project-URL: Source Code, https://github.com/lightbluetitan/agridatasets-py
Keywords: agriculture,agronomy,datasets,crop yield,soil science,forestry,horticulture,plant pathology,entomology,livestock,animal science,pesticides,uniform trials,split plot,latin square,experimental design,munsell color,data science,statistics,research,open science,open data,agricultural statistics
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Operating System :: OS Independent
Classifier: Natural Language :: English
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pandas<3.0,>=1.5
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: pytest-cov; extra == "dev"
Requires-Dist: black; extra == "dev"
Requires-Dist: flake8; extra == "dev"
Requires-Dist: mypy; extra == "dev"
Provides-Extra: docs
Requires-Dist: mkdocs; extra == "docs"
Requires-Dist: mkdocs-material; extra == "docs"
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# agridatasets

[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
[![Python 3.8+](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/)

The `agridatasets` package provides a curated collection of agricultural, agronomic, and livestock
datasets for data analysis, statistical modeling, and machine learning research. Includes crop yield
trials, soil Munsell mineral classifications, field uniformity experiments, forestry genetics, plant
disease infestations, pesticide efficacy, biological pest controls, dairy cattle and broiler chicken
development tracking, and more from curated R packages on CRAN.

## Installation
You can install the `agridatasets` package from PyPI:
```bash
pip install agridatasets
```

## Usage
```python

import agridatasets as agd

# List all available datasets

datasets = agd.list_datasets()
print(datasets)

# Load a specific dataset

df = agd.load_dataset('bamboo_growth')
print(df.head())

# Describe dataset

df_01 = agd.describe('cows_insemination')
print(df_01)

```

## 📊 Some Available Datasets

| Dataset | Description |
|---------|-------------|
| `bamboo_growth` | Bamboo growth observations across different geographic locations and transects. |
| `cows_insemination` | Cow insemination and conception records across time intervals. |
| `earthworm_population` | Seasonal earthworm population data, including density and biomass measurements. |
| `earthworm_crop_soils` | Earthworm density and biomass data from cultivated soils under different crops. |
| `rabbit_body_mass` | Rabbit body weight and hind foot length measurements. |

> Run `agridatasets.list_datasets()` or `agd.list_datasets()` (using `agd` as alias) to see the full list of available datasets.

## Disclaimer

The datasets included in `agridatasets` are provided strictly for educational,
research, and informational purposes. All datasets originate from curated R packages
available on CRAN and retain their original licenses and attributions.

The author of `agridatasets` makes no warranties, express or implied, regarding
the accuracy, completeness, or suitability of any dataset for a particular purpose.
Users are solely responsible for ensuring that their use of these datasets complies
with applicable laws, regulations, and ethical guidelines.

Any findings, conclusions, or decisions derived from the use of these datasets
are the sole responsibility of the user. The author shall not be held liable for
any direct, indirect, incidental, or consequential damages arising from the use
or misuse of the datasets included in this library.

For agronomic advice, crop management, or any agriculture-related decision-making purposes,
always consult a qualified agricultural professional or agronomist.


## License

The `agridatasets` library is released under the **MIT License**, which allows free use,
modification, and distribution. See the [LICENSE](LICENSE) file for details.
