Concept Flow - Resetting index
Start with DataFrame
Check current index
Call reset_index()
New index created: 0,1,2,...
Old index moved to column or dropped
Return new DataFrame
Resetting index replaces the current index with a new default one and optionally keeps the old index as a column.