Introduction to Python Pandas DataFrame

Pandas DataFrame is a 2 dimensional array whose size is mutable. It is a table of rows and columns. In pandas dataframe data is aligned in a tabular fashion in a rows and columns.

Features of DataFrame

  • A dataframe makes manipulation of data easy from selecting to replacing columns and indices to reshaping data.
  • It has labeled axes(rows and columns).
  • It can easily perfrom arithmetic operation on rows and columns. 
  • Its columns are of different types.

It is a popular Python package for data science. Its flexible data structures that make data manipulation and analysis easy, among many other things.

 

Pandas DataFrame

Tags