Crop Prediction According to Climate
I am going to teach how can we predict the crop according to climate change.
In this lab I will go through the crop production Excel data from which we will train our data and know the crop name according to given data.
First we import some required libraries for this lab by installing Anaconda Navigator(desktop GUI):
Install Jupyter Notebook from Anaconda navigator GUI
Data Manipulating
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns
#for interactivity
from ipywidgets import interact2

