diff --git a/web/pandas/community/ecosystem.md b/web/pandas/community/ecosystem.md index 60b043cf052ce..e821981ffe2b5 100644 --- a/web/pandas/community/ecosystem.md +++ b/web/pandas/community/ecosystem.md @@ -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' | ## Development tools diff --git a/web/pandas/pdeps/0006-ban-upcasting.md b/web/pandas/pdeps/0006-ban-upcasting.md index 325c25313af53..139c96bbae2a4 100644 --- a/web/pandas/pdeps/0006-ban-upcasting.md +++ b/web/pandas/pdeps/0006-ban-upcasting.md @@ -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; + - ``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: