Concept Flow - Melt for wide-to-long reshaping
Start with wide DataFrame
Select id_vars and value_vars
Apply pd.melt()
Create long DataFrame with columns: id_vars + variable + value
Use long DataFrame for analysis or visualization
This flow shows how we start with a wide table, choose which columns to keep fixed (id_vars) and which to reshape (value_vars), then apply melt to get a long table.