Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
a9ca0fa
ENH/PERF: enable column-wise reductions for EA-backed columns
jorisvandenbossche Mar 20, 2020
21aee0d
fix numeric_only for EAs
jorisvandenbossche Mar 20, 2020
9f83f6e
fix _reduce_columns call
jorisvandenbossche Mar 20, 2020
a9706e0
move EA._reduce call into blk_func
jorisvandenbossche Mar 20, 2020
07372e3
reuse blk_func for column-wise, inline _iter_arrays
jorisvandenbossche Mar 20, 2020
2d08450
temp
jorisvandenbossche Mar 20, 2020
c7f1dae
Merge remote-tracking branch 'upstream/master' into EA-column-wise-re…
jorisvandenbossche Mar 27, 2020
9e2a780
first attempts of going block-wise with numeric_only=None
jorisvandenbossche Mar 27, 2020
7f847e8
Merge remote-tracking branch 'upstream/master' into EA-column-wise-re…
jorisvandenbossche Apr 3, 2020
594d2b0
TEMP
jorisvandenbossche Apr 3, 2020
3d62e68
Merge remote-tracking branch 'upstream/master' into EA-column-wise-re…
jorisvandenbossche Apr 24, 2020
5b0370e
use iter_column_arrays
jorisvandenbossche May 29, 2020
6e3c287
Merge remote-tracking branch 'upstream/master' into EA-column-wise-re…
jorisvandenbossche May 29, 2020
7088cfc
intermediate clean-up: remove BM.reduce changes + do column-wise for …
jorisvandenbossche May 29, 2020
925d660
fixup
jorisvandenbossche May 29, 2020
852331e
fix dtype of empty result
jorisvandenbossche May 30, 2020
1c9a685
Merge remote-tracking branch 'upstream/master' into EA-column-wise-re…
jorisvandenbossche Jun 6, 2020
34731f2
clean-up
jorisvandenbossche Jun 6, 2020
a8e61d0
whitespace
jorisvandenbossche Jun 6, 2020
f233109
Merge remote-tracking branch 'upstream/master' into EA-column-wise-re…
jorisvandenbossche Jun 15, 2020
ec65c57
Merge remote-tracking branch 'upstream/master' into EA-column-wise-re…
jorisvandenbossche Jul 12, 2020
15ec9b6
add test case for GH34520, copied from GH35112
jorisvandenbossche Jul 12, 2020
2653d02
add test to ensure EA op is used for integer array
jorisvandenbossche Jul 12, 2020
64e0069
remove try except
jorisvandenbossche Jul 12, 2020
bb0a47b
remove unused code
jorisvandenbossche Jul 12, 2020
9323f0e
add test for GH32651, copied from GH34210
jorisvandenbossche Jul 12, 2020
eb33f86
remove check for EAs for block-wise path
jorisvandenbossche Jul 12, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
temp
  • Loading branch information
jorisvandenbossche committed Mar 20, 2020
commit 2d084509ffdf51a92992500d21db8a939aa49680
2 changes: 1 addition & 1 deletion pandas/core/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -7864,7 +7864,7 @@ def _reduce(
axis : int
numeric_only : bool, optional
filter_type : None or "bool"
Set to "bool" for ops that give boolean results.
Set to "bool" for ops that only work on boolean values.
skipna, **kwds : keywords to pass to the `op` function

"""
Expand Down
2 changes: 1 addition & 1 deletion pandas/core/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -6480,7 +6480,7 @@ def replace(
raise AssertionError("'to_replace' must be 'None' if 'regex' is not a bool")

self._consolidate_inplace()

breakpoint()
if value is None:
# passing a single value that is scalar like
# when value is None (GH5319), for compat
Expand Down