You are on page 1of 4

ZCOER-Comp.

Department

Group A
Assignment No: 9

Title of the Assignment: Data Analytics II


1. Use inbuild dataset titanic . Plot a box plot for distribution of age
with respect to each gender with information about whether they
survieved or not( Column name: ‘sex’,’age’)
2. Write an observation on the inference from above statistics.
Objective of the Assignment: Able to perform the data visualization operation
using Python on any open source dataset

Prerequisite:
1. Basic of Python Programming

Sub:DS&BDA Page 1
ZCOER-Comp. Department

Concept of Data Preprocessing, Data Formatting , Data

Normalization and Data Cleaning.

Objective: 
To understand the basic concepts of Hashing in Data structure and collision
resolution techniques.

Outcome: 

To implement the basic concept of Hashing, to store a set of telephone


numbers , use of concept of hashing to quickly look up in N number of
Data.  

CO Relevance: CO1

PO/PSOs Relevance: PO1, PO2, PO3,PO4, PO5, PO9, PO10, PSO1,


PSO2, PSO3

Contents for Theory:

1. Introduction to Data Visualization


2. Description of dataset
3. Implementation of Code.

What is Data Visualization?

Data visualization is a field in data analysis that deals with visual representation of data. It
graphically plots data and is an effective way to communicate inferences from data.

Using data visualization, we can get a visual summary of our data. With pictures, maps and
graphs, the human mind has an easier time processing and understanding any given data.
Data visualization plays a significant role in the representation of both small and large data

Sub:DS&BDA Page 2
ZCOER-Comp. Department

sets, but it is especially useful when we have large data sets, in which it is impossible to see
all of our data, let alone process and understand it manually.

Description of dataset:

 Load Libraries and dataset

Implementation of Code

Box plot for distribution of age with respect to gender with information about
survived or not can be get
By: sns.boxplot(x=’sex’, y=’age’,hue=’survived’)

Sub:DS&BDA Page 3
ZCOER-Comp. Department

Conclusion

Seaborn is an advanced data visualization library built on top of Matplotlib


library. We looked at how we can draw distributional and categorical plots using
Seaborn library. 

Sub:DS&BDA Page 4

You might also like