-
From the Koalas docs:
So, if |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
No, "ignoring index" and "adding default index" is different.
If you want to get a fully sequenced index, you should set the |
Beta Was this translation helpful? Give feedback.
No, "ignoring index" and "adding default index" is different.
ignore_index=True
just ignores the existing index, and attach the new default index as defined incompute.default_index_type
(so the index order could be mixed, but it still "ignores" the existing index)If you want to get a fully sequenced index, you should set the
compute.default_index_type
tosequence
.