Home / Glossary / Pandas Series
PythonPandas 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)