Unleashing
the Power of
Pandas in
Python
Tisa Bajracharya
01
Overview
02
What is Pandas?
Pandas Data Structures
Data Manipulation with Pandas
Data Visualization with Pandas
Conclusion
03
What is Pandas?
Pandas is a powerful data manipulation tool in the Python programming language.
They provide easy-to-use data structures and data analysis tools that allow you to
work with large datasets efficiently.
04
Pandas Data
Series
A Series is a one-dimensional array-like
Structures
object that can hold any data type.
DataFrame
DataFrame is a two-dimensional table-like
data structure with rows and columns.
05
Series:
DataFrame:
06
Data Manipulation
with Pandas
01 02
iloc loc
Gets DataFrame by integer Gets DataFrame rows &
Index/position. columns by labels/names
07
08
09
10
Data visualization tools:
Data
Matplotlib
Plotly
Seaborn
Visualization What we can create from the tools:
with Pandas Scatter plots
Bar charts
Pie charts
Bar Graph using plot.bar Pie Chart using plot.pie
11
Conclusion
01 Pandas is a powerful library in Python that allows
us to manipulate and visualize data with ease.
The different data structures used in pandas, such
02 as Series and DataFrame can be used in real-world
scenarios.
03
By exploring pandas further, you can unlock even
more potential for your data projects and analyses.
12