What do you mean by pandas dataframe?



Vikas Said

+0 -0

Pandas dataFrame is a 2-D mutable-size data Structure e.g 2-D matrix,table with row and column.It is mainly used in Data Analytics and Data Science.we can create a data from by using list, dictionary,numpy n-D array and series.etc.

Example:
import pandas as pd
dframe = pd.DataFrame()
print (dframe)



Submit Your Response