This is a part of my DataFrame
0 1
0 -0.045988 2018-01-01 00:00:00
1 -0.046024 2018-01-01 00:01:00
2 -0.044360 2018-01-01 00:02:00
3 -0.044722 2018-01-01 00:03:00
4 -0.043637 2018-01-01 00:04:00
for example, I want to find the -0.043637 in DataFrame:
X.isin([-0.043637])
but the result is like
0 1
0 False False
1 False False
2 False False
3 False False
4 False False
The type of DataFrame is
0 float64
1 datetime64[ns]
dtype: object
It is really strang that it does not work and return the wrong answer. What's your idea, why it happened?