0% found this document useful (0 votes)
9 views

Data Frames in Python Pandas

Dataframes in Pandas store data in rows and columns with labeled rows and columns, where each column can have different data types like integers, floats, and strings. Dataframes are created by importing Pandas and using the DataFrame() method, passing in the data, index, and columns.

Uploaded by

niradmitra01
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
9 views

Data Frames in Python Pandas

Dataframes in Pandas store data in rows and columns with labeled rows and columns, where each column can have different data types like integers, floats, and strings. Dataframes are created by importing Pandas and using the DataFrame() method, passing in the data, index, and columns.

Uploaded by

niradmitra01
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 1

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)

You might also like