GithubHelp home page GithubHelp logo

vignesh0011 / ex03-univariate-analysis Goto Github PK

View Code? Open in Web Editor NEW

This project forked from karthi-govindharaju-ai/ex03-univariate-analysis

0.0 0.0 0.0 514 KB

License: MIT License

Jupyter Notebook 100.00%

ex03-univariate-analysis's Introduction

Ex03-Univariate-Analysis

Aim

To read the given data and perform the univariate analysis with different types of plots.

Explanation

Univariate analysis is basically the simplest form to analyze data. Uni means one and this means that the data has only one kind of variable. The major reason for univariate analysis is to use the data to describe. The analysis will take data, summarise it, and then find some pattern in the data.

Algorithm

Step1

Read the given data.

Step2

Get the information about the data.

Step3

Remove the null values from the data.

Step4

Mention the datatypes from the data.

Step5

Count the values from the data.

Step6

Do plots like boxplots,countplot,distribution plot,histogram plot.

Program

Developed by : M Vignesh
Registration Number : 212220233002
import numpy as np
import pandas as pd
import io
from scipy import stats
import seaborn as sns

from google.colab import files
uploaded = files.upload()

df = pd.read_csv(io.BytesIO(uploaded['SuperStore.csv']))
print(df)

df.info()
df.describe()
df.isnull()
df.isnull().sum()
df['Postal Code'] = df['Postal Code'].fillna(df['Postal Code'].mode()[0])
df.isnull().sum()
df.dtypes
df['Postal Code'].value_counts()
df.skew()
df.kurtosis()
sns.boxplot(x='Postal Code', data=df)
sns.countplot(x='Postal Code',data=df)
sns.distplot(df["Postal Code"])
sns.histplot(x='Postal Code',data=df)

Output

DATA INFORMATION

1

DATA'S DATATYPES

2

BOXPLOT

3

COUNTPLOT

4

DISTRIBUTION PLOT

5

HISTOGRAM PLOT

6

Result

Thus we have read the given data and performed the univariate analysis with different types of plots.

ex03-univariate-analysis's People

Contributors

karthi-govindharaju-ai avatar vignesh0011 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.