We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In [694]: series = pd.Series([pd.NaT, '1']) series[~pd.isnull(series)] Out[694]: 0 NaN 1 1 dtype: object
Possibly related: #5967 (comment)
The text was updated successfully, but these errors were encountered:
On master this works
(aside from the display issue)
Pls feel free to create a test for this though
In [5]: s = pd.Series([pd.NaT,'1']) In [6]: s Out[6]: 0 NaN 1 1 dtype: object In [7]: pd.isnull(s) Out[7]: 0 True 1 False dtype: bool In [8]: s[pd.isnull(s)] Out[8]: 0 NaT dtype: datetime64[ns] In [9]: s[~pd.isnull(s)] Out[9]: 1 1 dtype: object
Sorry, something went wrong.
this was closed by #5443
No branches or pull requests
Possibly related: #5967 (comment)
The text was updated successfully, but these errors were encountered: