You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
make sure tests are of the form: assert_frame_equal(resut, expected, check_index_type=True) (otherwise defaults to an 'equiv' comparison, which doesnt distinguish between Int64 and equiv RangeIndex.
In fact that is how to find differences in the test suite (to look for cases where we could/should be returning a RangeIndex but are currently not).
With version 0.18.0 introducing RangeIndex, should RangeIndex be applied for concat when ignore_index is set to True?
df = pd.concat([df_a, df_b], ignore_index=True)
df.index is an instance of Int64Index, not RangeIndex currently in 0.18.0
The text was updated successfully, but these errors were encountered: