A Column With a Name and Index
What makes a Series different from a list.
Meet the Series
A Series is pandas' one-dimensional column: a sequence of values that all share one name and one type. Think of it as a single spreadsheet column. 📊
More Than a List
A plain Python list just holds values in order. A Series pairs every value with a label, so each item has both a position and a name you can look up by.
All lessons in this course
- A Column With a Name and Index
- Label-Based vs Position-Based Access
- Series Math and Alignment
- Counting and Spotting Values