Concept Flow - Right join behavior
Start with two tables
Identify keys to join on
Match keys from right table to left table
Keep all rows from right table
Add matching rows from left table
Fill missing left data with NaN
Output combined table
Right join keeps all rows from the right table and matches rows from the left table where keys match, filling missing left data with NaN.