0 votes
in Python Pandas by
Mention the different Types of Data structures in pandas??

1 Answer

0 votes
by

There are two data structures supported by pandas library, Series and DataFrames. Both of the data structures are built on top of Numpy. Series is a one-dimensional data structure in pandas and DataFrame is the two-dimensional data structure in pandas. There is one more axis label known as Panel which is a three-dimensional data structure and it includes items, major_axis, and minor_axis.

Related questions

0 votes
asked Dec 8, 2022 in Data Structures & Algorithms by sharadyadav1986
+1 vote
asked Dec 6, 2022 in Data Structures & Algorithms by sharadyadav1986
...