Series
Noun · Development
Definitions
A one-dimensional labeled array in data libraries like pandas, capable of holding any data type and supporting vectorized operations, alignment by index, and missing-value handling.
In plain English: A single column of data with labels, like one column from a spreadsheet, that you can do math and filtering on.
Example: "df["price"] returns a Series you can filter, aggregate, or plot directly."