Pandas Pandas groupby(...).apply(f) amplifies TypeError exceptions.

import pandas as pddf = pd.DataFrame(dict(A=[1,1,2,2,3], B=[4,4,5,5,6]))def f(x): return x['A'] < 'taco'df.groupby...

Pandas BUG: Augmented arithmetic assignments will modify original series starting version 1.1.4

[x] I have checked that this issue has not already been reported.[x] I have confirmed this bug exists on the latest vers...

Pandas API: inconsistent return format of groupby apply

related issues:- [x] #13121 - [x] #5839- [x] #9867- [x] #13255 - [x] #20066 - [ ] #14927 (about detecting mutating funct...

Pandas RLS: pandas 1.5.2

Aiming at the release of pandas 1.5.2 at some point in November, if nothing urgent needs to be fixed and released.Commen...

Pandas API: to_datetime with unit changes how strings are interpreted

vals = ["2016-01-02 03:04:05"]pd.to_datetime(vals) # <- workspd.to_datetime(vals, unit="s") # &...

Pandas CI: Add durations to benchmarks build

asv 5.0 support a --durations parameter equivalent to the pytest one, to print the timing of the slowest benchmarks. It'...

Pandas Governance: pandas workgroups

xref #47694, #47706I think the organization of the core development team would be more efficient if we have small workgr...

Pandas REF: Define ops on Resampler as normal methods

Ref: https://github.com/pandas-dev/pandas/pull/48980#pullrequestreview-1134863343Similar to #48400 with groupby, we shou...

Pandas BUG: Complex Numbers Not Imported Correctly Under JSON Read

Pandas version checks[X] I have checked that this issue has not already been reported.[X] I have confirmed this bug exis...

Pandas API/BUG: pd.NA == pd.NaT returns False

@jorisvandenbossche I expected this to return pd.NA. Is this intentional?Comment From: jorisvandenbosscheThe same is tr...

Pandas BUG: Validate All Py_* Functions in C Extensions check for NULL

@jbrockmendel pointed out in #49034 that we don't consistently validate the return of Py_* functions in the C API. The n...

Pandas BUG: ValueError when creating a TimedeltaIndex with np.timedelta64

Pandas version checks[X] I have checked that this issue has not already been reported.[X] I have confirmed this bug exis...

Pandas BUG: Series.replace with categorical dtype and null values coerces to object

ser = pd.Series(pd.Categorical([1], categories=[1, 2, 3]))print(ser)# 0 1# dtype: category# Categories (3, int64): [1...

Pandas BUG: Replacing categorical values with NA raises "boolean value of NA is ambiguous" error

Pandas version checks[X] I have checked that this issue has not already been reported.[X] I have confirmed this bug exis...

Pandas DOC: broken links in the "See also" section for pandas.core.window.rolling.Rolling.rank

Pandas version checks[X] I have checked that the issue still exists on the latest versions of the docs on main hereLocat...

Pandas ENH: Add a global option to set use_nullable_dtypes to True if not explicitly specified

Feature Type[X] Adding new functionality to pandas[ ] Changing existing functionality in pandas[ ] Removing existing fun...

Pandas BUG: combine_first fails when one series is timezone-aware and the other is emtpy.

[x] I have checked that this issue has not already been reported.[x] I have confirmed this bug exists on the latest vers...

Pandas REF: use common utilities when implementing EA._get_common_dtype

From #43409, https://github.com/pandas-dev/pandas/pull/43409#discussion_r703891397.Look to use is_*_dtype instead of isi...

Pandas Timedelta parse AM/PM

I have some data that is roughly like "%H:%M:%S %P" (where %P is AM/PM). I'd like to store it as a Timedelta representin...

Pandas PeriodIndex.ravel returns ndarray[int64]

This came up while trying to de-duplicate some DataFrame vs Series arithmetic logic in core.ops.Comment From: gfyoungTha...
上一页 下一页
.