Data Frames in Python Pandas
Dataframe is a data structure in Python Pandas which
stores data in 2 dimensions i.e., rows and coloumns. Here
each coloumn can have different type of values like
integer,float,string,etc.
Important points
-> 2 Dimensional data structure
-> Rows and Coloumns can be labelled
-> Mutable data structure
Creating a Data Frame
To create a data frame, we need to import pandas and input
the following statement:
Dframe = pd.DataFrame(data,index,coloumns)