Samarth-27's picture
Create README.md
26e5897 verified
|
Raw
History Blame Contribute Delete
12.7 kB

🌱 Crop Recommendation Dataset

A machine learning dataset for crop recommendation based on soil properties and environmental conditions. The dataset contains measurements of essential soil nutrients and climatic parameters, along with the crop label that is suitable for those conditions.

This dataset can be used for machine learning classification, agricultural analytics, decision-support systems, and smart farming applications.


πŸ“Œ Dataset Overview

Property Details
Dataset Name Crop Recommendation Dataset
Task Multi-class Classification
Domain Agriculture / Machine Learning
Primary Objective Recommend the most suitable crop
Input Features Soil nutrients + environmental conditions
Target Variable Crop label
Data Type Tabular
File Format CSV
ML Problem Supervised Learning
Recommended Models Random Forest, XGBoost, SVM, Neural Networks, Decision Trees

🎯 Purpose

The purpose of this dataset is to develop machine learning models capable of recommending an appropriate crop based on the characteristics of a particular agricultural environment.

The model learns relationships between:

  • Nitrogen concentration
  • Phosphorus concentration
  • Potassium concentration
  • Temperature
  • Relative humidity
  • Soil pH
  • Rainfall

and the corresponding crop that is suitable for those conditions.

A trained model can then predict a crop recommendation for a new set of soil and environmental measurements.


πŸ“Š Dataset Features

The dataset contains the following variables:

Feature Description Unit / Representation
N Nitrogen content in the soil Soil nutrient measurement
P Phosphorus content in the soil Soil nutrient measurement
K Potassium content in the soil Soil nutrient measurement
temperature Average environmental temperature Β°C
humidity Relative humidity %
ph Soil acidity/alkalinity pH scale
rainfall Rainfall received mm
label Recommended crop Categorical

Feature Types

Numerical features

N
P
K
temperature
humidity
ph
rainfall

Categorical target

label

🧠 Machine Learning Task

This dataset is primarily designed for a multi-class classification problem.

Given:

N
P
K
temperature
humidity
ph
rainfall

the machine learning model predicts:

label

Example

Input:

N = 90
P = 42
K = 43
temperature = 20.8
humidity = 82.0
ph = 6.5
rainfall = 202.9

Possible prediction:

Recommended Crop: Rice

The example above illustrates the prediction format. The actual prediction depends on the trained model and dataset.


πŸ”¬ Potential Applications

This dataset can be used for:

  • 🌾 Crop recommendation systems
  • πŸ€– Machine learning classification
  • 🌱 Smart agriculture
  • 🚜 Precision farming
  • πŸ“ˆ Agricultural data analysis
  • 🌦️ Climate-aware crop selection
  • πŸ§‘β€πŸŒΎ Decision-support systems
  • πŸ“± Agricultural recommendation applications
  • πŸ”¬ Machine learning experimentation
  • πŸŽ“ Academic and educational projects

πŸ—οΈ Suggested Machine Learning Pipeline

A typical machine learning workflow using this dataset is:

Raw Dataset
     β”‚
     β–Ό
Data Loading
     β”‚
     β–Ό
Data Cleaning
     β”‚
     β–Ό
Exploratory Data Analysis
     β”‚
     β–Ό
Feature / Target Separation
     β”‚
     β–Ό
Train / Test Split
     β”‚
     β–Ό
Feature Scaling (if required)
     β”‚
     β–Ό
Model Training
     β”‚
     β–Ό
Model Evaluation
     β”‚
     β–Ό
Crop Prediction

πŸ€– Recommended Algorithms

Several supervised learning algorithms can be evaluated on this dataset.

Baseline Models

  • Logistic Regression
  • Decision Tree
  • K-Nearest Neighbors

Ensemble Models

  • Random Forest
  • Gradient Boosting
  • XGBoost
  • LightGBM

Other Models

  • Support Vector Machine
  • Neural Networks
  • Multilayer Perceptron

For a practical crop recommendation system, Random Forest and gradient-boosting models are strong candidates because they can capture nonlinear relationships between environmental conditions and crop classes.


πŸ“ˆ Evaluation Metrics

Because the task is multi-class classification, recommended evaluation metrics include:

  • Accuracy
  • Precision
  • Recall
  • F1-score
  • Confusion Matrix

For a more complete evaluation, macro-averaged and weighted F1-scores can also be reported.

Example:

Accuracy
Precision
Recall
F1-Score
Confusion Matrix

πŸ”Ž Data Exploration

Useful exploratory analyses include:

  • Distribution of nitrogen levels
  • Distribution of phosphorus levels
  • Distribution of potassium levels
  • Temperature distribution
  • Humidity distribution
  • Soil pH distribution
  • Rainfall distribution
  • Crop-class distribution
  • Feature correlations
  • Feature distributions by crop
  • Outlier analysis

Example visualizations:

Feature Distribution
        ↓
Correlation Analysis
        ↓
Crop-wise Comparison
        ↓
Feature Importance

🧹 Data Preprocessing

Depending on the version of the dataset, preprocessing may include:

  1. Checking for missing values
  2. Checking for duplicate records
  3. Detecting anomalous values
  4. Validating feature ranges
  5. Separating input features and target labels
  6. Encoding categorical labels if required
  7. Splitting data into training and testing sets
  8. Scaling numerical features when required by the selected algorithm

Tree-based models generally do not require feature scaling, while algorithms such as SVM, KNN, and neural networks may benefit from scaling.


⚠️ Dataset Limitations

This dataset should be considered a machine learning research and educational dataset, not a standalone agricultural decision-making system.

Crop suitability can depend on many factors that may not be represented in the dataset, including:

  • Soil type
  • Geographic location
  • Season
  • Crop variety
  • Irrigation availability
  • Local weather patterns
  • Pest and disease conditions
  • Soil depth
  • Soil organic matter
  • Agricultural practices
  • Market conditions
  • Extreme weather events

Therefore, predictions generated from a model trained on this dataset should not be treated as professional agricultural advice without additional validation and domain expertise.


🌍 Responsible Use

Users should avoid treating model predictions as guaranteed crop recommendations.

A responsible production system should combine machine learning predictions with:

  • Local agricultural knowledge
  • Regional climate data
  • Current weather information
  • Soil testing
  • Expert agricultural recommendations
  • Historical crop performance
  • Real-world validation

The model should be viewed as a decision-support tool, rather than a replacement for agricultural expertise.


πŸ§ͺ Example Python Usage

import pandas as pd

# Load dataset
df = pd.read_csv("Crop_recommendation.csv")

# Inspect dataset
print(df.head())
print(df.info())

# Separate features and target
X = df.drop("label", axis=1)
y = df["label"]

print("Features:")
print(X.columns)

print("\nTarget classes:")
print(y.unique())

🌳 Example Model

A Random Forest classifier can be used as a baseline:

from sklearn.model_selection import train_test_split
from sklearn.ensemble import RandomForestClassifier
from sklearn.metrics import accuracy_score, classification_report

X_train, X_test, y_train, y_test = train_test_split(
    X,
    y,
    test_size=0.2,
    random_state=42,
    stratify=y
)

model = RandomForestClassifier(
    n_estimators=200,
    random_state=42
)

model.fit(X_train, y_train)

predictions = model.predict(X_test)

print("Accuracy:", accuracy_score(y_test, predictions))
print(classification_report(y_test, predictions))

πŸš€ From Dataset to Production Application

This dataset can serve as the foundation for a complete crop recommendation application:

                    β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
                    β”‚   Soil / Weather    β”‚
                    β”‚       Inputs        β”‚
                    β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
                               β”‚
                               β–Ό
                    β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
                    β”‚   Data Validation   β”‚
                    β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
                               β”‚
                               β–Ό
                    β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
                    β”‚   ML Classification β”‚
                    β”‚        Model        β”‚
                    β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
                               β”‚
                               β–Ό
                    β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
                    β”‚ Crop Recommendation β”‚
                    β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
                               β”‚
                               β–Ό
                    β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
                    β”‚   Web / Mobile App  β”‚
                    β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

A production implementation could additionally integrate:

  • REST API
  • Flask / FastAPI backend
  • React frontend
  • Database storage
  • Weather APIs
  • Soil data
  • Model monitoring
  • Cloud deployment

πŸ“ Dataset Structure

Recommended repository structure:

crop-recommendation-dataset/
β”‚
β”œβ”€β”€ Crop_recommendation.csv
β”œβ”€β”€ README.md
└── LICENSE

πŸ“‹ Data Schema

N              β†’ Numerical
P              β†’ Numerical
K              β†’ Numerical
temperature   β†’ Numerical
humidity      β†’ Numerical
ph            β†’ Numerical
rainfall      β†’ Numerical
label         β†’ Categorical

πŸ” Data Quality Considerations

Before using the dataset for research or production, users should verify:

  • Missing values
  • Duplicate records
  • Class balance
  • Feature distributions
  • Physically plausible values
  • Measurement units
  • Data provenance
  • Label consistency

Additional validation is recommended before deploying a model trained on this dataset in a real agricultural environment.


πŸ“œ License

Please refer to the repository's license file for the applicable terms of use.

If the original dataset was obtained from another source, users should also review and comply with the original dataset's license and attribution requirements.


πŸ™Œ Intended Audience

This dataset is suitable for:

  • Students
  • Machine learning practitioners
  • Data scientists
  • AI/ML researchers
  • Agricultural technology developers
  • Academic projects
  • Smart farming researchers
  • Developers building crop recommendation prototypes

⭐ Citation

If you use this dataset in a project, research work, publication, or application, please provide appropriate attribution to the original dataset source and follow its licensing requirements.


πŸ“Œ Disclaimer

This dataset is provided for research, educational, and machine learning development purposes.

Predictions generated from models trained on this dataset may not accurately represent real-world agricultural conditions. Users should validate predictions against local soil, climate, crop, and agricultural information before making real-world decisions.