https://github.com/happyhappyprojects/predictive_modeling_for_agriculture
https://github.com/happyhappyprojects/predictive_modeling_for_agriculture
data-science machine-learning python sklearn
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/happyhappyprojects/predictive_modeling_for_agriculture
- Owner: happyhappyprojects
- Created: 2025-04-02T01:22:08.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-04-10T16:29:35.000Z (over 1 year ago)
- Last Synced: 2025-04-10T18:04:51.392Z (over 1 year ago)
- Language: Jupyter Notebook
- Size: 46.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
Awesome Lists containing this project
README
# Sowing Success: How Machine Learning Helps Farmers Select the Best Crops

## Project Overview
Measuring essential soil metrics such as nitrogen, phosphorous, potassium levels, and pH value is an important aspect of assessing soil condition. However, it can be an expensive and time-consuming process, which can cause farmers to prioritize which metrics to measure based on their budget constraints.
Farmers have various options when it comes to deciding which crop to plant each season. Their primary objective is to maximize the yield of their crops, taking into account different factors. One crucial factor that affects crop growth is the condition of the soil in the field, which can be assessed by measuring basic elements such as nitrogen and potassium levels. Each crop has an ideal soil condition that ensures optimal growth and maximum yield.
## Data
A farmer reached out to you as a machine learning expert for assistance in selecting the best crop for his field. They've provided you with a dataset called `soil_measures.csv`, which contains:
- `"N"`: Nitrogen content ratio in the soil
- `"P"`: Phosphorous content ratio in the soil
- `"K"`: Potassium content ratio in the soil
- `"pH"` value of the soil
- `"crop"`: categorical values that contain various crops (target variable).
Each row in this dataset represents various measures of the soil in a particular field. Based on these measurements, the crop specified in the `"crop"` column is the optimal choice for that field.
In this project, you will build multi-class classification models to predict the type of `"crop"` and identify the single most importance feature for predictive performance.