Pandas Library in
Python
LECTURE NO: 08
Introduction to Pandas Library
Pandas store a tabular data using the data frame.
Pandas have two data sturctures: Series and DataFrame
A Pandas Series is a one-dimensional array data structure which means a column in the table.
A Pandas DataFrame is a two-dimensional labelled data structure like a table in databases.
Every Series (column) and DataFrame (consisting of rows and column) consists of column and
row index
Each column can have a different type of element.
Creating a Pandas Series
Create a Pandas Series from dictionary
Creating a Pandas Data Frame
Operations on DataFrame

Pandas Library introduction Python.pptx

  • 1.
  • 2.
    Introduction to PandasLibrary Pandas store a tabular data using the data frame. Pandas have two data sturctures: Series and DataFrame A Pandas Series is a one-dimensional array data structure which means a column in the table. A Pandas DataFrame is a two-dimensional labelled data structure like a table in databases. Every Series (column) and DataFrame (consisting of rows and column) consists of column and row index Each column can have a different type of element.
  • 3.
  • 4.
    Create a PandasSeries from dictionary
  • 5.
  • 6.