Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Checking for any NaT-like objects in a TimedeltaIndex always returns True #13603

Closed
tjader opened this issue Jul 9, 2016 · 0 comments
Closed
Labels
Bug Indexing Related to indexing on series/frames, not to indexes themselves Timedelta Timedelta data type
Milestone

Comments

@tjader
Copy link

tjader commented Jul 9, 2016

Code Sample, a copy-pastable example if possible

>>> None in pd.to_timedelta(range(5), unit='d') + pd.offsets.Hour(1)
True

Returns True for any one of [pd.NaT, None, float('nan'), np.nan]

Expected Output

>>> None in pd.to_timedelta(range(5), unit='d') + pd.offsets.Hour(1)
False

output of pd.show_versions()

>>> pd.show_versions()

INSTALLED VERSIONS
------------------
commit: 3c202b1cbcc73c4006c967c8abe1b8d9089c5be4
python: 2.7.11.final.0
python-bits: 64
OS: Windows
OS-release: 10
machine: AMD64
processor: Intel64 Family 6 Model 58 Stepping 9, GenuineIntel
byteorder: little
LC_ALL: None
LANG: None
LOCALE: None.None

pandas: 0.18.1+171.g3c202b1
nose: 1.3.7
pip: 8.1.2
setuptools: 23.0.0
Cython: 0.24
numpy: 1.10.4
scipy: 0.17.1
statsmodels: None
xarray: 0.7.2
IPython: None
sphinx: None
patsy: None
dateutil: 2.5.3
pytz: 2016.4
blosc: None
bottleneck: 1.0.0
tables: 3.2.2
numexpr: 2.5.2
matplotlib: 1.5.1
openpyxl: 2.3.2
xlrd: None
xlwt: None
xlsxwriter: None
lxml: None
bs4: None
html5lib: None
httplib2: None
apiclient: None
sqlalchemy: 1.0.13
pymysql: None
psycopg2: None
jinja2: 2.8
boto: 2.40.0
pandas_datareader: None
@sinhrks sinhrks added Bug Indexing Related to indexing on series/frames, not to indexes themselves Timedelta Timedelta data type labels Jul 10, 2016
@jreback jreback added this to the 0.19.0 milestone Jul 18, 2016
yui-knk added a commit to yui-knk/pandas that referenced this issue Jul 18, 2016
pd.NaT, None, float('nan') and np.nan are
converted NaT in TestTimedeltas.
So we should convert keys if keys are these value.

Fix pandas-dev#13603
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug Indexing Related to indexing on series/frames, not to indexes themselves Timedelta Timedelta data type
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants