Nineya
Home
Blog
Pandas API: Allow partial failure with TypeError in agg with dict-like arguments
2025-02-08 22:25:46
5032
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
2025-02-08 22:25:41
1939
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
2025-02-08 22:25:37
14721
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
2025-02-08 22:25:28
735
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
2025-02-08 22:25:23
2234
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
2025-02-08 22:25:18
2116
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
2025-02-08 22:25:14
2878
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
2025-02-08 22:25:09
5494
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
2025-02-08 22:25:01
1580
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
2025-02-08 22:24:57
1186
# 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
2025-02-08 22:24:52
4451
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
2025-02-08 22:24:47
1564
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
2025-02-08 22:24:38
2748
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
2025-02-08 22:24:33
10264
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
2025-02-08 22:24:25
4780
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
2025-02-08 22:24:20
5473
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
2025-02-08 22:24:14
8599
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
2025-02-08 22:24:08
3662
Reproducible example:import pandas as pdtmp_scen = {'name': 'Current conditions', 'actionSet': ['not_irrigated', 'cover_...
Pandas RLS: pandas 1.5.3
2025-02-08 22:24:03
7914
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
2025-02-08 22:23:58
4694
[x] I have checked that this issue has not already been reported.[x] I have confirmed this bug exists on the latest vers...
上一页
下一页
1
…
153
154
155
156
157
…
2246
.