Concept Flow - map() for element-wise transformation
Start with Series
Apply map() function
For each element: transform
Collect transformed elements
Return new Series with transformed values
The map() function takes each element in a pandas Series, applies a transformation, and returns a new Series with the results.