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
follow up #28176 (review)
Right now, astype(str) converts np.nan into string.
astype(str)
np.nan
In [3]: pd.Series(['foo', np.nan]).astype(str) Out[3]: 0 foo 1 nan dtype: object
After merging #28176, astype(str) will preserve np.nan.
Review test_astype_str_map in pandas/tests/series/test_dtypes.py to get rid of any skipna keyword argument.
test_astype_str_map
skipna
The text was updated successfully, but these errors were encountered:
I am interested in working on this.
Sorry, something went wrong.
take
I am trying to define necessary actions to correct this. Please follow
#28176 (comment)
Looks like there is no skipna kwargs in this test now so closing. Happy to reopen if misunderstood
NumberPiOso
No branches or pull requests
follow up #28176 (review)
Right now,
astype(str)
convertsnp.nan
into string.After merging #28176,
astype(str)
will preservenp.nan
.Review
test_astype_str_map
in pandas/tests/series/test_dtypes.py to get rid of anyskipna
keyword argument.The text was updated successfully, but these errors were encountered: