Reset Index
Reset your dataframe's Index after sorting, filtering, or importing your data to cleanup your workspace.
Why reset a dataframes index
By default, dataframes are indexed from 0...n-1
. This means that every row in the dataframe is uniquely identified by an index number.
In Mito, much like in Excel, when you filter or sort your dataframe, you rows can get our of order, and so the indexes displayed on the side might not be in order as well. We preserve these indexes until you manually decide to reset them (which might make your formulas easier to parse, etc).
How to Reset a Dataframes Index
Right click on the index, and click either
Reset and Drop Index
orReset Index
.Reset and Drop Index
will reset the index to0...n-1
.Reset and Drop Index
will reset the index to0...n-1
, and adds the index to the dataframe.
Last updated