Skip to content

BUG: Equal input DataFrames but different results #53093

Closed
@seanslma

Description

@seanslma

Pandas version checks

  • I have checked that this issue has not already been reported.

  • I have confirmed this bug exists on the latest version of pandas.

  • I have confirmed this bug exists on the main branch of pandas.

Reproducible Example

import pandas as pd

d1 = pd.DataFrame({  
    'ref': ['ref', 'ref'],
    'date': pd.to_datetime(['2019-01-31', '2019-02-01']),         
    'value': [100.0, 100.0],
}).set_index(['ref', 'date'])
d2 = pd.DataFrame({
    'ref': ['ref', 'ref'],    
    'date': pd.to_datetime(['2019-02-01', '2019-02-01']),   
    'code': ['A', 'B'],
    'value': [0.75, 0.25],
}).set_index(['ref', 'date', 'code'])
d12 = d1 * d2
d21 = d2 * d1
print(d12)
print(d21)
print(d12.equals(d21))

code = ['A']
r12 = d12.query('code in @code').reset_index('ref', drop=True).get('value').loc[:'2019-01-31']
r21 = d21.query('code in @code').reset_index('ref', drop=True).get('value').loc[:'2019-01-31']
print(r12)
print(r21) #wrong result

Issue Description

As d12 and d21 are equal to each other so the outputs from r12 and r21 should be the same.

The result for r12 is correct

Series([], Name: value, dtype: float64)

But the result for r21 is wrong

date        code
2019-02-01  A       75.0
Name: value, dtype: float64

Expected Behavior

r21 should also be an empty Series same as r12.

In pandas 1.5.3 both r12 and r21 are an empty Series.

Installed Versions

INSTALLED VERSIONS

commit : 37ea63d
python : 3.9.15.final.0
python-bits : 64
OS : Windows
OS-release : 10
Version : 10.0.19044
machine : AMD64
processor : Intel64 Family 6 Model 58 Stepping 0, GenuineIntel
byteorder : little
LC_ALL : None
LANG : None
LOCALE : English_Australia.1252

pandas : 2.0.1
numpy : 1.23.3
pytz : 2022.1
dateutil : 2.8.2
setuptools : 65.5.0
pip : 22.3.1
Cython : 0.29.30
pytest : 7.1.2
hypothesis : None
sphinx : None
blosc : None
feather : None
xlsxwriter : None
lxml.etree : 4.9.0
html5lib : None
pymysql : None
psycopg2 : 2.9.3
jinja2 : 3.0.3
IPython : 8.4.0
pandas_datareader: None
bs4 : 4.11.1
bottleneck : 1.3.5
brotli :
fastparquet : None
fsspec : 2022.5.0
gcsfs : None
matplotlib : 3.5.2
numba : 0.53.0
numexpr : 2.7.3
odfpy : None
openpyxl : 3.0.9
pandas_gbq : None
pyarrow : 11.0.0
pyreadstat : None
pyxlsb : None
s3fs : None
scipy : 1.8.1
snappy : None
sqlalchemy : 1.4.46
tables : None
tabulate : None
xarray : 2022.3.0
xlrd : None
zstandard : None
tzdata : 2022.1
qtpy : None
pyqt5 : None

Metadata

Metadata

Assignees

No one assigned

    Labels

    BugMultiIndexRegressionFunctionality that used to work in a prior pandas version

    Type

    No type

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions