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
This returns True, which is obviously not correct. This was introduced by #27495. The error persists with more than one level in the MultiIndex. The example is just for simplicity.
Expected Output
False
Output of pd.show_versions()
master
The text was updated successfully, but these errors were encountered:
Since pandas 1.1.4 has been released, upgraded pandas version in CI.
From pandas 1.1.4, `MultiIndex.monotonic_increasing` and `MultiIndex.monotonic_decreasing` return `False` if the `MultiIndex` includes null value - before pandas 1.1.4, they treat the null value as the smallest value -.
Refer to pandas-dev/pandas#37220 for more detail.
Therefore, several behavior is fixed, and added more related tests.
[What’s new in pandas 1.1.4](https://pandas.pydata.org/docs/whatsnew/v1.1.4.html)
rising-star92
added a commit
to rising-star92/databricks-koalas
that referenced
this issue
Jan 27, 2023
Since pandas 1.1.4 has been released, upgraded pandas version in CI.
From pandas 1.1.4, `MultiIndex.monotonic_increasing` and `MultiIndex.monotonic_decreasing` return `False` if the `MultiIndex` includes null value - before pandas 1.1.4, they treat the null value as the smallest value -.
Refer to pandas-dev/pandas#37220 for more detail.
Therefore, several behavior is fixed, and added more related tests.
[What’s new in pandas 1.1.4](https://pandas.pydata.org/docs/whatsnew/v1.1.4.html)
I have checked that this issue has not already been reported.
I have confirmed this bug exists on the latest version of pandas.
(optional) I have confirmed this bug exists on the master branch of pandas.
Note: Please read this guide detailing how to provide the necessary information for us to reproduce your bug.
Code Sample, a copy-pastable example
Problem description
This returns
True
, which is obviously not correct. This was introduced by #27495. The error persists with more than one level in theMultiIndex
. The example is just for simplicity.Expected Output
False
Output of
pd.show_versions()
master
The text was updated successfully, but these errors were encountered: