Learn practical skills, build real-world projects, and advance your career

Project: Forest Fire Prediction

I have taken data from machinelearning website.

first step: import pandas and matplotlib for analysis.

import pandas as pd
import matplotlib.pyplot as plt
fire=pd.read_csv('../data/forestfires.csv')
intensity=fire.area

we can see there 13 columns.

fire.head()