Coder Social home page Coder Social logo

exp-10-data-science's Introduction

EXP-10-DATA-SCIENCE

AIM:

You are given land.csv which contains property prices in the city of banglore, India. You need to examine price_per_sqft column and do following,

(1) Remove outliers using IQR

(2) After removing outliers in step 1, you get a new dataframe.

(3) use zscore of 3 to remove outliers. This is quite similar to IQR and you will get exact same result

(4) Plotting different types plot of data visualization using matplotlib.

Explanation

An Outlier is an observation in a given dataset that lies far from the rest of the observations. That means an outlier is vastly larger or smaller than the remaining values in the set. An outlier is an observation of a data point that lies an abnormal distance from other values in a given population. (odd man out).Outliers badly affect mean and standard deviation of the dataset. These may statistically give erroneous results.Most machine learning algorithms do not work well in the presence of outlier. So it is desirable to detect and remove outliers.Outliers are highly useful in anomaly detection like fraud detection where the fraud transactions are very different from normal transactions.

ALGORITHM

STEP 1

Read the given Data

STEP 2

Get the information about the data

STEP 3

Detect the Outliers using IQR method and Z score

STEP 4

Remove the outliers

STEP 5

Using matplotlib create various plot for visualization

CODE

import pandas as ps
import numpy as np
import seaborn as sns
import matplotlib.pyplot as plt
df=ps.read_csv("/content/land.csv")
df

df.head()

df.tail(5)

df.info()

df.isnull().sum()

q1=df['price_per_sqft'].quantile(0.35)
q3=df['price_per_sqft'].quantile(0.65)
print("First Quantile =",q1,"Second quantile =",q3)

from scipy import stats
z=np.abs(stats.zscore(df['price_per_sqft']))
df2=df[(z<3)]
df2

plt.figure(figsize=(12,10))
cols = ['bhk','bath','size']
Q1 = df[cols].quantile(0.25)
Q3 = df[cols].quantile(0.75)
IQR = Q3 - Q1
df = df[~((df[cols] < (Q1 - 1.5 * IQR)) |(df[cols] > (Q3 + 1.5 * IQR))).any(axis=1)]
plt.title("Dataset after removing outliers")
df.boxplot()
plt.show()

sns.boxplot(x="price_per_sqft",data=df)
plt.figure(figsize=(9,6))

sns.lineplot(x="price",y="bhk",data=df,marker='o')
plt.xticks(rotation = 90)

sns.lineplot(x='price',y='total_sqft', hue ="price",data=df)

sns.scatterplot(x='total_sqft',y='price_per_sqft',data=df)

sns.boxplot(x="price",y="total_sqft",data=df)

sns.barplot(x="bath",y="bhk",data=df)
plt.xticks(rotation = 90)

df3=df.groupby(by=["bath"]).sum()
labels=[]
for i in df3.index:
    labels.append(i) 
plt.figure(figsize=(8,8))
colors = sns.color_palette('pastel')
plt.pie(df3["total_sqft"],colors = colors,labels=labels, autopct = '%0.0f%%')
plt.show()

sns.pointplot(x=df["price_per_sqft"],y=df["bath"])
df.corr()
plt.subplots(figsize=(12,7))
sns.heatmap(df.corr(),annot=True)

OUTPUT

READ

image

HEAD

image

TAIL

image

INFO

image

ISNULL SUM

image

QUANTILE

image

DATASET AFTER REMOVAL OF OUTLIER USING Z-SCORE

image

BOX

image

LINE PLOT 1

image

LINE PLOT 2

image

SCATTER

image

BOX

image

BAR

image

PIE CHAT

image

POINT PLOT

image

HEAT MAP

image

RESULT

The given datasets are read and outliers are detected and are removed using IQR and z-score methods.

exp-10-data-science's People

Contributors

rakesh9339 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.