Skip to content

pct change bug issue 21200 #21235

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 37 commits into from
Dec 12, 2018
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
ee2c034
pct change bug issue 21200
simonariddell May 28, 2018
47b5908
add whatsnew
simonariddell May 28, 2018
41beb4a
fix pep8 issues
simonariddell May 28, 2018
25efd37
Removed vectorization from groupby pct change
simonariddell May 30, 2018
849fac4
try using cache arguments to keep vectorization
simonariddell Jun 4, 2018
eaede34
BUG,TST: Remove case where vectorization fails in pct_change groupby …
simonariddell Jun 9, 2018
64097cc
BUG,TST: Remove case where vectorization fails in pct_change groupby …
simonariddell Jun 19, 2018
fcd7183
BUG,TST: Remove case where vectorization fails in pct_change groupby …
simonariddell Jun 19, 2018
e8681d6
Merge branch 'groupby_pctchange_bug' of https://github.com/SimonAleck…
simonariddell Jun 24, 2018
77c3935
BUG,TST: Remove case where vectorization fails in pct_change groupby …
simonariddell Jun 24, 2018
d037e65
Update test to address WillAyds code suggestion
simonariddell Jul 29, 2018
a4fcb33
incorporate Will CRs
simonariddell Sep 27, 2018
64d2e4f
cr update
simonariddell Sep 28, 2018
eabfe1f
merge upstream
simonariddell Sep 28, 2018
a63553a
incorporate CR and merge in master
simonariddell Sep 29, 2018
c72c112
Merge branch 'master' of https://github.com/pandas-dev/pandas
simonariddell Nov 23, 2018
a745209
merge in master
simonariddell Nov 23, 2018
5d3fc2d
BUG,TST: Remove case where vectorization fails in pct_change groupby …
simonariddell Nov 25, 2018
ac9d005
Merge remote-tracking branch 'upstream/master'
simonariddell Nov 25, 2018
1f1f705
Merge branch 'master' into groupby_pctchange_bug
simonariddell Nov 25, 2018
795d7be
BUG,TST: Remove case where vectorization fails in pct_change groupby …
simonariddell Nov 25, 2018
f0a9c6d
Merge branch 'groupby_pctchange_bug' of https://github.com/SimonAleck…
simonariddell Nov 27, 2018
a979f79
BUG,TST: Remove case where vectorization fails in pct_change groupby …
simonariddell Nov 27, 2018
5eb79c2
Merge branch 'groupby_pctchange_bug' of https://github.com/SimonAleck…
simonariddell Nov 27, 2018
b11d20f
BUG,TST: GH21234 groupby pct_change
simonariddell Nov 27, 2018
f480299
BUG,TST: GH21234 groupby pct_change
simonariddell Nov 28, 2018
a3c95cb
BUG,TST: GH21235 groupby pct_change whatsnew
simonariddell Dec 2, 2018
e5289a2
BUG, TST: GH 21235 groupby pct_change whatsnew
simonariddell Dec 9, 2018
1ccc507
Merge remote-tracking branch 'upstream/master'
simonariddell Dec 9, 2018
7f4a244
merge master
simonariddell Dec 9, 2018
c26cf60
BUG, TST: GH 21235 groupby pct_change whatsnew
simonariddell Dec 9, 2018
877b433
BUG, TST: GH 21235 groupby pct_change whatsnew
simonariddell Dec 9, 2018
c8b686e
Merge remote-tracking branch 'upstream/master'
simonariddell Dec 11, 2018
faf532e
Merge remote-tracking branch 'upstream/master'
simonariddell Dec 12, 2018
6d87075
Merge branch 'master' into groupby_pctchange_bug
simonariddell Dec 12, 2018
ad934b7
BUG, TST: GH 21235 groupby pct_change whatsnew
simonariddell Dec 12, 2018
01d705f
BUG, TST: GH 21235 groupby pct_change test parametrize
simonariddell Dec 12, 2018
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
22 changes: 3 additions & 19 deletions pandas/core/groupby/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,25 +35,9 @@
from pandas.core.generic import NDFrame, _shared_docs
from pandas.core.groupby import base
from pandas.core.groupby.groupby import (
GroupBy, _apply_docs, _transform_template, _group_selection_context)
from pandas.core.generic import NDFrame
from pandas.core.groupby import base
from pandas.core.dtypes.common import (
is_scalar,
is_bool,
is_datetimelike,
is_numeric_dtype,
is_integer_dtype,
is_interval_dtype,
ensure_platform_int,
ensure_int64)
from pandas.core.dtypes.missing import isna, notna
import pandas.core.algorithms as algorithms
from pandas.core.frame import DataFrame
from pandas.core.dtypes.cast import maybe_downcast_to_dtype
from pandas.core.base import SpecificationError, DataError
from pandas.core.index import Index, MultiIndex, CategoricalIndex
from pandas.core.arrays.categorical import Categorical
GroupBy, _apply_docs, _transform_template)
from pandas.core.index import CategoricalIndex, Index, MultiIndex
import pandas.core.indexes.base as ibase
from pandas.core.internals import BlockManager, make_block
from pandas.core.panel import Panel
from pandas.core.series import Series
Expand Down
2 changes: 0 additions & 2 deletions pandas/core/groupby/groupby.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ class providing the base-class of operations.
"""

import collections
import warnings
import copy
from contextlib import contextmanager
import datetime
from functools import partial, wraps
Expand Down