Concept Flow - apply() on rows (axis=1)
Start with DataFrame
Define function to apply
Call apply() with axis=1
Function runs on each row
Collect results into Series or DataFrame
Use or assign results
This flow shows how apply() runs a function on each row of a DataFrame when axis=1 is set.