0 votes
in Python Pandas by
What is a Series in Pandas?

1 Answer

0 votes
by

Pandas Series is a one-dimensional labelled array capable of holding data of any type (integer, string, float, python objects, etc.). The axis labels are collectively called index. Pandas Series is nothing but a column in an excel sheet.

...