Concept Flow - pivot_wider (long to wide)
Start with long data
Identify key columns: id, names, values
Spread 'names' into columns
Fill cells with corresponding 'values'
Result: wide data frame
pivot_wider takes a long table and spreads key-value pairs into new columns, making data wider.