Python For Non-Programmers Final

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 218

Proprietary content. ©Great Learning. All Rights Reserved.

Unauthorized use or distribution prohibited


Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
How do
humans
communicate?

hello Olá

Bonjour
नमस्कार

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
I am Sam Am Sam I

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
How do we
speak with
computers?

Java Python

C++

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Syntax for Computer Language

import pandas as pd

pandas import pd as

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Why do we need Programming?

What is 2*2?

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Why do we need Programming?

What is 20*20?

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Why do we need Programming?

What is
12345*6789?

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Applications of Programming Languages

Gaming Banking Machine Learning

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
What is Data?

13.4
My Name is Sam
287

(a+b)2 0 1

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
How to Store Data?

How do I
store data?

“John”

123

TRUE

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Need of Variables

Data/Values can be stored in temporary storage spaces called variables

Student

“John”

0x1098ab

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Example of Variable

a+b

10 a
a-b

Multiple operations on the variables


20 b a*b

a/b

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Decision Making Statements

If
else
It’s raining:
Go out and Play Football
Sit inside

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Decision Making Statements

If
else
Marks > 70:
Give Practice Test
Get Ice-cream

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
if…else Pseudo Code

If(condition){
Statements to be executed….
}

else{
Statements to be executed….
}

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Looping Statements

Looping statements are used to repeat a task multiple times

Keep filling this


bucket with a
mug of water
while it is not full

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Looping Statements

Keep repeating
the song until
you close the
app!

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Looping Statements

Get your salary


credited at the
end of each
month!

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
While Loop Pseudo Code

while(TRUE){
Keep executing statements….
}

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Functions in Real Life

Eating Running Cycling

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Functions in Programming World

Function is a block of code which performs a specific task

Deposit Function to deposit money

Withdraw Function to withdraw money

Balance Function to check balance

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Object Oriented Programming

You are
surrounded
with Objects!!

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Classes

Class is a template/blue-print for real-world entities

Properties Behavior

• Color • Make Calls


• Cost • Watch Videos
• Battery Life • Play Games

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Objects

Objects are specific instances of a class

Apple Motorola Samsung

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
How do you solve a problem?

How do you
make lemon
juice?

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Step by Step Approach

1 Check if you have all the ingredients

2 Take lemon and cut into two halves

3 Squeeze lemon into a glass of water

4 Add sugar and stir it well

5 Serve it cold with ice cubes

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
What is an Algorithm?

Step by step approach to solve a problem is known as algorithm

Input Steps to be followed Output

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Algorithm to find if number is even/odd

Start

Take Number

If number
Even Number Odd Number
% 2 == 0

End

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Introduction to Python

Cross-Platform
Compatible

Free & Open Source Large Standard Library

Object Oriented

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Installing Python

This is the site to install Python -> https://www.python.org/downloads/

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Installing PyCharm

This is the site to install PyCharm -> https://www.jetbrains.com/pycharm/

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Installing Anaconda

This is the site to install Anaconda -> https://www.anaconda.com/

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Intro to Jupyter Notebook

Jupyter Notebook is a browser-based interpreter that allows us to interactively


work with Python

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Variables in Python

How do I
store data?

“John”

“Sam”

“Matt”

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Variables in Python

Data/Values can be stored in temporary storage spaces called variables

Student

“John”

0x1098ab

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Variables in Python

Data/Values can be stored in temporary storage spaces called variables

“John” “Sam” “Matt”

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
DataTypes in Python

Every variable is associated with a data-type

10, 500 3.14, 15.97 TRUE, FALSE “Sam”, “Matt”

int float Boolean String

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Operators in Python

Arithmetic Operators

Relational Operators Logical Operators

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Python Tokens

Smallest meaningful Component in a Program

Keywords

Identifiers

Literals

Operators

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Python Keywords

Keywords are special reserved words

False class Finally Is Return

None continue For Lambda Try

True def From Nonlocal While

and del Global Not With

as elif If Or Yield

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Python Identifiers

Identifiers are names used for variables, functions or objects

Rules

No special character expect _(underscore)

Identifiers are case sensitive

First Letter cannot be a digit

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Python Literals

Literals are constants in Python

I’m a constant.
I don’t change

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Python Strings

Strings are sequence of characters enclosed within single quotes(‘ ’), double
quotes(“ “) or triple quotes(‘’’ ‘’’)

‘’’ I am going to
‘Hello World’ “This is Sparta”
France tomorrow’’’

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Extracting Individual Characters

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
String Functions

Finding length of string Converting String to lower case Converting String to upper case

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
String Functions

Replacing a substring

Number of occurrences of substring

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
String Functions

Finding the index of substring

Splitting a String

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Data-Structures in Python

Tuple List

Dictionary Set

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Tuple in Python

Tuple is an ordered collection of elements enclosed within ()

Tuples are
immutable

tup1=(1,’a’,True)

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Extracting Individual Elements

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Modifying a Tuple

You cannot modify a tuple because it is immutable

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Tuple Basic Operations

Finding Length of Tuple

Concatenating Tuples

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Tuple Basic Operations

Repeating Tuple Elements

Repeating and Concatenating

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Tuple Functions

Minimum Value

Maximum Value

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
List in Python

List is an ordered collection of elements enclosed within []

Lists are
mutable

l1=[1,’a’,True]

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Extracting Individual Elements

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Modifying a List

Changing the element at 0th index Popping the last element

Appending a new element

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Modifying a List

Reversing elements of a list Sorting a list

Inserting element at a specified index

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
List Basic Operations

Concatenating Lists

Repeating elements

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Dictionary in Python

Dictionary is an unordered collection of key-value pairs enclosed with {}

Dictionary is
mutable

Fruit={"Apple":10,"Orange":20}

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Extracting Keys and Values

Extracting Keys

Extracting Values

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Modifying a Dictionary

Adding a new element

Changing an existing element

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Dictionary Functions

Update one dictionary’s elements with another

Popping an element

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Set in Python

Set is an unordered and unindexed collection of elements enclosed with {}

Duplicates
are not
allowed in
Set

s1={1,"a",True}

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Set Operations

Update one dictionary’s elements with another Removing an element

Updating multiple elements

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Set Functions

Union of two sets

Intersection of two sets

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
If Statement

If
else
It’s raining:
Go out and Play Football
Sit inside

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
If Statement

If
else
Marks > 70:
Give Practice Test
Get Ice-cream

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
if…else Pseudo Code

If(condition){
Statements to be executed….
}

else{
Statements to be executed….
}

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Looping Statements

Looping statements are used to repeat a task multiple times

Keep filling this


bucket with a
mug of water
while it is not full

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Looping Statements

Keep repeating
the song until
you close the
app!

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Looping Statements

Get your salary


credited at the
end of each
month!

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
While Loop

Syntax:
Enter While loop

while condition:
Test Execute Statements
Expression

Exit While loop


True

Body of While

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
For Loop

For Loop is used to iterate over a sequence(tuple, list, dictionary..)

This is the
syntax of for
loop

for val in sequence:


Body of for

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Functions in Real Life

Eating Running Cycling

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Python Functions

Function is a block of code which performs a specific task

Deposit Function to deposit money

Withdraw Function to withdraw money

Balance Function to check balance

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Python Object Oriented Programming

You are
surrounded
with Objects!!

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Classes

Class is a template/blue-print for real-world entities

Properties Behavior

• Color • Make Calls


• Cost • Watch Videos
• Battery Life • Play Games

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Class in Python

Class is a user-defined data-type

I am a
user-define
d data type
int float

bool str

Mobile

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Attributes and Methods

color
Attributes
cost

Play Game
Methods
Make Call

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Objects

Objects are specific instances of a class

Apple Motorola Samsung

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Objects in Python

Specific instances of Mobile data type

Apple Motorola Samsung

a = 10 b = 20 c = 30

Specific instances of integer data type

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Creating the first Class

Creating the ‘Phone’ class

Instantiating the ‘p1’ object

Invoking methods through object

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Adding parameters to the class

Setting and Returning the


attribute values

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Creating a class with Constructor

init method acts as the constructor

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Instantiating Object

Instantiating the ‘e1’ object

Invoking the
‘employee_details’
method

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Inheritance in Python

With inheritance one class can derive the properties of another class

Man inheriting
features from his
father

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Inheritance Example

Creating the base class

Instantiating the object for base class

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Inheritance Example

Creating the child class

Instantiating the object for child class

Invoking the child class method

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Over-riding init method

Over-riding init method

Invoking show_details()
method from parent class Invoking show_car_details()
method from child class

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Types of Inheritance

Single Inheritance

These are the types


of inheritance in
Python…. Multiple Inheritance

Multi-level Inheritance

Hybrid Inheritance

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Multiple Inheritance

In multiple inheritance, the child inherits from more than 1 parent class

Parent 1 Parent 2

Child

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Multiple Inheritance in Python

Parent Class One Child Class

Parent Class Two

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Multiple Inheritance in Python

Invoking methods

Instantiating object of child class

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Multi-Level Inheritance

In multi-level Inheritance, we have Parent, child, grand-child relationship

Parent

Child

Grand-Child

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Multi-Level Inheritance in Python

Grand-Child Class
Parent Class

Child Class

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Multi-Level Inheritance in Python

Invoking class methods

Instantiating object of GrandChild class

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Libraries in Python

Python library is a collection of functions and methods that allows you to perform many actions without writing your code

NumPy

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Python NumPy

NumPy stands for Numerical python and is the core library for numeric and
scientific computing

It consists of
multi-dimensional
array objects and a
collection of routines
for processing those
arrays
NumPy

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Creating NumPy Array

Single-dimensional Multi-dimensional
Array Array

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Initializing NumPy Array

Initializing NumPy array with zeros

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Initializing NumPy Array

Initializing NumPy array with same number

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Initializing NumPy Array

Initializing NumPy array within a range

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Initializing NumPy Array

Initializing NumPy array with random numbers

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
NumPy-Shape

Checking the shape of NumPy arrays

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Joining NumPy Arrays

vstack() hstack() column_stack()

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Numpy Intersection & Difference

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
NumPy Array Mathematics

Addition of NumPy Arrays

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
NumPy Array Mathematics

Basic Multiplication
Basic Addition

Basic Subtraction Basic Division

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
NumPy Math Functions

Mean Standard Deviation

Median

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
NumPy Broadcasting

Numpy Array Addition

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
NumPy Broadcasting

10 20 30 40 50 + 5

10 20 30 40 50

5 5 5 5 5

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
NumPy Broadcasting

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
NumPy Broadcasting

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
NumPy Matrix

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
NumPy Matrix Transpose

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
NumPy Matrix Multiplication

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
NumPy Save & Load

Saving Numpy Array

Loading Numpy Array

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Python Pandas

Pandas stands for Panel Data and is the core library for data manipulation and data
analysis

It consists of single
and
multi-dimensional
data-structures for
data-manipulation

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Pandas Data-Structures

Single-dimensional Multi-dimensional

Series Object Data-frame

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Pandas Series Object

Series Object is one-dimensional labeled array

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Changing Index

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Series Object from Dictionary

You can also create


a series object from
a dictionary!!

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Changing index position

You can change


the index
positions

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Extracting Individual Elements

Extracting a single element Extracting elements from back

Extracting a sequence of elements

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Basic Math Operations on Series

Adding a scalar value Adding two Series Objects


to Series Elements

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Pandas Dataframe

Dataframe is a 2-dimensional labelled data-structure

A data-frame
comprises of rows
and columns

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Creating a Dataframe

This is how you can


create a data.frame

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Dataframe In-Built Functions

head()

shape() describe()

tail()

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
.iloc[]

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
.loc[]

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Dropping Columns

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Dropping Rows

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Combining Data-Frames

Creating first dataframe

Creating second dataframe

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Data-Frames Concatenation

Axis=0

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Data-Frames Concatenation

Axis=0, Sort = True

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Data-Frames Concatenation

Axis=1

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Data-Frames Merge – Inner Join

Inner Join

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Data-Frames Merge – Left Join

Left Join

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Data-Frames Merge – Right Join

Right Join

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Data-Frames Merge – Outer Join

Outer Join

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
More Pandas Functions

Mean Minimum

Median Maximum

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
More Pandas Functions

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
More Pandas Functions

Value_counts()

sort_values()

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Pokemon Analysis

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Understanding Data

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Looking at Null Values

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Imputing Null Values

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Checking Frequency

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Renaming Columns

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Extracting Primary Types

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Extracting Primary & Secondary Types

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Extracting Specific Pokemons

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Python Matplotlib

Matplotlib is a python library used for data visualization

You can create


bar-plots,
scatter-plots,
histograms and a lot
more with matplotlib

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Line Plot

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Line Plot

Adding Title and Labels

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Line Plot

Changing Line Aesthetics

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Line Plot

Adding two lines in the same plot

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Line Plot

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Line Plot

Adding sub-plots

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Bar Plot

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Bar Plot

Adding Title and Labels

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Horizontal Bar Plot

Horizontal Bar Plot

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Scatter Plot

Creating a basic scatter-plot

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Scatter Plot

Changing Mark Aesthetics

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Scatter Plot

Adding two markers


in the same plot

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Scatter Plot

Adding sub-plots

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Histogram

Creating data

Making Histogram

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Histogram

Changing Aesthetics

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Histogram

Working with a dataset

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Box-Plot

Creating data

Making Histogram

Making Plot

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Violin-Plot

Creating data

Making Histogram

Making Plot

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Pie-Chart

Creating data

Making Plot

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Pie-Chart

Changing Aesthetics

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
DoughNut-Chart

Creating Data

Making Plot

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
SeaBorn Line Plot

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
SeaBorn Line Plot

Grouping data with ‘hue’

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
SeaBorn Line Plot

Adding Styles

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
SeaBorn Line Plot

Adding Markers

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
SeaBorn Bar Plot

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
SeaBorn Bar Plot

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
SeaBorn Bar Plot

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
SeaBorn Bar Plot

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
SeaBorn Bar Plot

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
SeaBorn Scatterplot

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
SeaBorn Scatterplot

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
SeaBorn Scatterplot

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
SeaBorn Histogram/Distplot

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
SeaBorn Histogram/Distplot

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
SeaBorn Histogram/Distplot

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
SeaBorn Histogram/Distplot

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
SeaBorn Histogram/Distplot

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
SeaBorn JointPlot

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
SeaBorn JointPlot

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
SeaBorn JointPlot

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
SeaBorn BoxPlot

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
SeaBorn BoxPlot

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
SeaBorn BoxPlot

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
SeaBorn BoxPlot

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
SeaBorn BoxPlot

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
SeaBorn BoxPlot

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
SeaBorn Pair Plot

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Case Study

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Case Study

We will have a case study on this census dataset

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Case Study

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Case Study

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Case Study

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Case Study

Renaming Columns

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Case Study

Extracting Individual Columns

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Case Study

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Case Study

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Case Study

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Case Study

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Case Study

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Case Study

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Case Study

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited

You might also like