Nineya
Home
Blog
Pandas Pandas groupby(...).apply(f) amplifies TypeError exceptions.
2025-02-08 22:27:27
8152
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
2025-02-08 22:27:23
7310
[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
2025-02-08 22:27:19
6186
related issues:- [x] #13121 - [x] #5839- [x] #9867- [x] #13255 - [x] #20066 - [ ] #14927 (about detecting mutating funct...
Pandas RLS: pandas 1.5.2
2025-02-08 22:27:14
6943
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
2025-02-08 22:27:09
787
vals = ["2016-01-02 03:04:05"]pd.to_datetime(vals) # <- workspd.to_datetime(vals, unit="s") # &...
Pandas CI: Add durations to benchmarks build
2025-02-08 22:27:04
313
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
2025-02-08 22:27:00
3974
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
2025-02-08 22:26:55
683
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
2025-02-08 22:26:51
7629
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
2025-02-08 22:26:46
1037
@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
2025-02-08 22:26:42
1849
@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
2025-02-08 22:26:37
3992
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
2025-02-08 22:26:33
721
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
2025-02-08 22:26:28
2956
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
2025-02-08 22:26:23
796
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
2025-02-08 22:26:12
820
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.
2025-02-08 22:26:08
5618
[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
2025-02-08 22:26:03
350
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
2025-02-08 22:25:58
4006
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]
2025-02-08 22:25:52
8006
This came up while trying to de-duplicate some DataFrame vs Series arithmetic logic in core.ops.Comment From: gfyoungTha...
上一页
下一页
1
…
152
153
154
155
156
…
2246
.