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
Corner-case, but the integer NA type does seem to behave differently when it comes to rpow:
rpow
In [57]: pd.Series([1, 1, 1]) ** pd.Series([1, np.nan, 3]) Out[57]: 0 1.0 1 1.0 2 1.0 dtype: float64 In [58]: pd.Series([1, 1, 1]) ** pd.Series([1, np.nan, 3], dtype='Int64') Out[58]: 0 1 1 NaN 2 1 dtype: Int64 In [63]: 1 ** np.nan Out[63]: 1.0
The text was updated successfully, but these errors were encountered:
Closely related, object gets this wrong too.
In [6]: s = pd.Series([1, None], dtype=object) In [7]: 1 ** s Out[7]: 0 1 1 NaN dtype: object
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Corner-case, but the integer NA type does seem to behave differently when it comes to
rpow
:The text was updated successfully, but these errors were encountered: