-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
closes the issue #49046 #53415
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
Closed
Closed
closes the issue #49046 #53415
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -526,6 +526,8 @@ Pandas-Genomics provides an extension type and extension array for working | |
with genomics data. It also includes `genomics` accessors for many useful properties | ||
and methods related to QC and analysis of genomics data. | ||
|
||
### [Physipy] | ||
|
||
### [Pint-Pandas](https://github.com/hgrecco/pint-pandas) | ||
|
||
Pint-Pandas provides an extension type for storing numeric arrays with units. | ||
|
@@ -555,7 +557,8 @@ authors to coordinate on the namespace. | |
| [composeml](https://github.com/alteryx/compose) | `slice` | `DataFrame` | | ||
| [gurobipy-pandas](https://github.com/Gurobi/gurobipy-pandas) | `gppd` | `Series`, `DataFrame` | | ||
| [staircase](https://www.staircase.dev/) | `sc` | `Series`, `DataFrame` | | ||
| [woodwork](https://github.com/alteryx/woodwork) | `slice` | `Series`, `DataFrame` | | ||
| [woodwork](https://github.com/alteryx/woodwork) | ||
| [physipy] | `slice` | `Series`, `DataFrame` | | 'df.physipy'| 'Series' | | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. does this render correctly? |
||
|
||
## Development tools | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -152,13 +152,13 @@ Possible options could be: | |
3. limit "banning upcasting" to when the upcasted dtype is ``object`` (i.e. preserve current behavior of upcasting the int64 Series to float64) . | ||
|
||
Let us compare with what other libraries do: | ||
- ``numpy``: option 2 | ||
- ``cudf``: option 2 | ||
- ``polars``: option 2 | ||
- ``R data.frame``: just upcasts (like pandas does now for non-nullable dtypes); | ||
- ``pandas`` (nullable dtypes): option 1 | ||
- ``datatable``: option 1 | ||
- ``DataFrames.jl``: option 1 | ||
- ``numpy``: option 2; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. unrelated? |
||
- ``cudf``: option 2; | ||
- ``polars``: option 2; | ||
- ``R data.frame``: just upcasts (like pandas does now for non-nullable dtypes); | ||
- ``pandas`` (nullable dtypes): option 1; | ||
- ``datatable``: option 1; | ||
- ``DataFrames.jl``: option 1; | ||
|
||
Option ``2`` would be a breaking behaviour change in pandas. Further, | ||
if the objective of this PDEP is to prevent bugs, then this is also not desirable: | ||
|
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.
the other bullet points have a link