Python For Non-Programmers Final
Python For Non-Programmers Final
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
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
Student
“John”
0x1098ab
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Example of Variable
a+b
10 a
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
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
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
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Functions in Programming World
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
Properties Behavior
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Objects
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
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
What is an Algorithm?
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
Object Oriented
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Installing Python
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Installing PyCharm
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Installing Anaconda
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Intro to Jupyter Notebook
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
Student
“John”
0x1098ab
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Variables in Python
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
DataTypes in Python
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Operators in Python
Arithmetic Operators
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Python Tokens
Keywords
Identifiers
Literals
Operators
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Python Keywords
as elif If Or Yield
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Python Identifiers
Rules
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Python Literals
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
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
String Functions
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
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
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Tuple Basic Operations
Concatenating Tuples
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Tuple Basic Operations
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
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
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Modifying a List
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
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
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Dictionary Functions
Popping an element
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Set in Python
Duplicates
are not
allowed in
Set
s1={1,"a",True}
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Set Operations
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Set Functions
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
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
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
While Loop
Syntax:
Enter While loop
while condition:
Test Execute Statements
Expression
Body of While
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
For Loop
This is the
syntax of for
loop
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Functions in Real Life
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Python Functions
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
Properties Behavior
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Class in Python
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
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Objects in Python
a = 10 b = 20 c = 30
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Creating the first Class
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Adding parameters to the class
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Creating a class with Constructor
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Instantiating 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
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Inheritance Example
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
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
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
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Multiple Inheritance in Python
Invoking methods
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Multi-Level Inheritance
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
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
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Initializing NumPy Array
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Initializing NumPy Array
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Initializing NumPy Array
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
NumPy-Shape
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Joining NumPy Arrays
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
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
NumPy Array Mathematics
Basic Multiplication
Basic Addition
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
NumPy Math Functions
Median
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
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
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
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Pandas Series Object
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
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Changing index position
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
Basic Math Operations on Series
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Pandas Dataframe
A data-frame
comprises of rows
and columns
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Creating a Dataframe
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
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
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
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
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
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
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Horizontal Bar Plot
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Scatter Plot
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Scatter Plot
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Scatter 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
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
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
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
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