Skip to content

Home / Glossary / Pandas Series

Python

Pandas Series

1D labelled array — like a single DataFrame column.

A Series is a one-dimensional labelled array in pandas. The index can be integers, strings, or dates. It supports vectorised operations and aligns automatically on the index during arithmetic.

Example

prices = pd.Series([150, 152, 149], index=dates)

Practise Pandas Series hands-on — free, in your browser

Related terms