DMW Project
DMW Project
A
Mini Project Report
Submitted
by
Digambar Padulkar
(Assistant Professor)
Certificate
This is to certify that following students
Ms. Shivani Ravindra Divekar 2041016
Ms. Sanika Sunil Patale 2041057
Principal
(Dr. R. S. Bichkar)
i
Abstract
ii
Contents
Acknowledgments i
Abstract ii
1 Introduction 1
1.1 Overview . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
1.2 Brief Description . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
1.3 Problem Definition . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
2 Dataset Description 2
2.1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
2.1.1 Purpose . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
2.1.2 Project Scope . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
3 Data Preprocessing 3
4 Classification 5
4.1 KNN Classifier . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
4.2 Logistic Regression Classifier . . . . . . . . . . . . . . . . . . . . . . . . . 6
4.3 Decision Tree . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
5 Confusion Matrix 7
5.1 Analyse Confusion Matrix . . . . . . . . . . . . . . . . . . . . . . . . . . 7
iii
1
Introduction
1.1 Overview
This section of project provide overall description of the project,including brief description
and problem defination.Second section contains literature survey. Third section contain
introduction ,purpose and design and implementation constraints.fourth section contain
classification and fifth section contain Confusion Matrix including Analysis of Confusion
Matrix.
Weather forecast are made by collecting as much data possible about the current state of
atmosphere and using understanding of atmospheric process to determine how atmosphere
evolves in the future.In this project we have taken dataset as a input which consist
of different attribute like temperature, humadity,sunshine,rainfall etc.In this project we
predict weather for prediction we appiled different classification technique and compare
the accuracy for the best result.
1
2
Dataset Description
2.1 Introduction
2.1.1 Purpose
Weather is one of the most effective environmentel constarints in every phase of our
lives.We are subject to adjusting ourselves with respect to weather condition from our
dressing habits to stategic organizational planning activities.The main purposeb of this
project is predict accurate enviornment condition.
Weather Aanalysis and Prediction is the application of science and technology to predict
the state of location. Design and Implementation Conthe atmosstraints
2
3
Data Preprocessing
Data Cleaning -
Data cleaning is the important process of Data pre-processing.It
is the process of detecting and correcting corrupted or inaccu-
rate records from a record set.For example filling missing value
,smooth noisy data, identify or remove outliers etc.
3
CHAPTER 3. DATA PREPROCESSING
Label Encoding -
It refers to converting the label into numeric from so as to convert
it into machine readable form.
Classification
5
CHAPTER 4. CLASSIFICATION
Confusion Matrix
7
CHAPTER 5. CONFUSION MATRIX