Pandas API: Allow partial failure with TypeError in agg with dict-like arguments

With df = pd.DataFrame({'a': [1, 2], 'b': [3, 4]}), my expectation is that:df.agg([func])df.agg({'a': func, 'b': func})B...

Pandas DEPR: Enforce 2.0 deprecations

xref #30228List of deprecations pending enforcement before releasing pandas 2.0.TopicDeprecation PREnforcement PRAssigne...

Pandas ENH: Rename ExcelWriter to make clear attributes are not public

Ref: https://github.com/pandas-dev/pandas/issues/43068#issuecomment-900504112Copying from the comment above:The document...

Pandas DOC: Use rst instead of markdown in release instructions

Looks like when I moved the release procedure to the pandas docs I didn't realize I had the notes in markdown, and the d...

Pandas BUG: Rename MultiIndex level destroys CategoricalIndex on other levels

When renaming some values in one of the levels of an index, any CategoricalIndex on other unrelated levels are suddenly ...

Pandas ENH: support nullable dtypes in get_dummies

Code Sample, a copy-pastable example if possibleimport pandas as pdseries = pd.Series(list('AA'))col = pd.get_dummies(se...

Pandas BUG: df.groupby().resample()[[cols]] raise KeyError when resampling on index

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

Pandas ENH: Using pyright to analyze missing type declarations

This describes a procedure for using the command line tool pyright (https://github.com/microsoft/pyright/blob/master/doc...

Pandas use keyword only args where appropriate

we should use keyword only arguments for some of our functions that have large numbers of kwargs to make it harder to ma...

Pandas BUG: Duplicate columns get duplicated in DataFrame.align

# With duplicate columnsdf = pd.DataFrame([[1, 2, 3], [4, 5, 6]], columns=list('abb'))result = df.drop(columns='a').alig...

Pandas ENH: Please add immutable/hashable FrozenDataFrame

Is your feature request related to a problem?I would like to use (algorithm, DataFrame) tuples as dict keys to record re...

Pandas BUG: Reindexing a DataFrame with a list of columns leeds to duplicate column

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

Pandas TST 56 tests in pandas/tests/test_generic.py aren't being tested

All these tests aren't actually being run:https://github.com/pandas-dev/pandas/blob/2ffb74814fb7ba800ed4ec6bc1935ccb78f9...

Pandas DOC: Extra float values appear after resampling in column used by groupby

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

Pandas BUG: DatetimeIndex with non-nano values and freq='D' throws ValueError

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

Pandas BUG: DataFrame.to_dict() converts Nullable Int types to numpy.int

Problem descriptionDataFrame.to_dict() method do not cast Nullable Int types (Int*Dtype) into Python int type. Instead, ...

Pandas DOC: Fix RT02 issues in docstrings

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

Pandas BUG: pd.Dataframe.from_dict when first value is a list

Reproducible example:import pandas as pdtmp_scen = {'name': 'Current conditions', 'actionSet': ['not_irrigated', 'cover_...

Pandas RLS: pandas 1.5.3

Will be releasing when the blockers are addressed:[x] Change iloc inplace setitem FutureWarning to DeprecationWarning ht...

Pandas BUG: where(...) unexpectedly casts None to np.NA for series with pd.Int64Dtype

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