-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
API: Series[bool][key] = np.nan -> cast to object #38709
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
Merged
Merged
Changes from 20 commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
6ee5c5f
TST: implement tm.check_setitem_equivalents
jbrockmendel 33e39f9
re-write as fixturized
jbrockmendel 5896615
CLN: algos.searchsorted (#38686)
jbrockmendel 90a76ce
REF: simplify coerce_to_target_dtype (#38683)
jbrockmendel 0827cd0
PERF: fix assert_frame_equal can be very slow (#38202)
ivanovmg 803f495
API: cast to object when setting np.nan into Series[bool]
jbrockmendel 055617b
Merge branch 'master' of https://github.com/pandas-dev/pandas into bu…
jbrockmendel 3be818f
Merge branch 'master' of https://github.com/pandas-dev/pandas into bu…
jbrockmendel 51ad10d
Merge branch 'master' of https://github.com/pandas-dev/pandas into bu…
jbrockmendel 279564b
Merge branch 'master' of https://github.com/pandas-dev/pandas into bu…
jbrockmendel e3b2cec
Merge branch 'master' of https://github.com/pandas-dev/pandas into bu…
jbrockmendel c4eb8e1
Merge branch 'master' of https://github.com/pandas-dev/pandas into bu…
jbrockmendel ce4311a
Merge branch 'master' of https://github.com/pandas-dev/pandas into bu…
jbrockmendel 9e5cb27
Merge branch 'master' of https://github.com/pandas-dev/pandas into bu…
jbrockmendel c01661d
fix putmask
jbrockmendel 23c69dc
Merge branch 'master' of https://github.com/pandas-dev/pandas into bu…
jbrockmendel 198768e
Merge branch 'master' of https://github.com/pandas-dev/pandas into bu…
jbrockmendel 7c6fdb7
Merge branch 'master' of https://github.com/pandas-dev/pandas into bu…
jbrockmendel e0c0194
Merge branch 'master' of https://github.com/pandas-dev/pandas into bu…
jbrockmendel f02f514
Merge branch 'master' of https://github.com/pandas-dev/pandas into bu…
jbrockmendel 0934ad1
Merge branch 'master' of https://github.com/pandas-dev/pandas into bu…
jbrockmendel d966441
Merge branch 'master' of https://github.com/pandas-dev/pandas into bu…
jbrockmendel d2ac2b3
whatsnew, test, maybe_promote->find_common_type
jbrockmendel File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hmm, shouldn't maybe_promote handle this? (`maybe_promote(new.dtype, values.dtype) ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wouldnt find_common_type make more sense?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yah this is nicer, updated