-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
BUG: Inconsistent behaviour in DataFrameGroupBy when selecting a subset of columns #44821
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
Comments
I found this old issues discussing selection of multiple columns in GroupBy objects: |
Thanks @maurosilber for the report and investigation.
makes sense.
This looks like a bug to me with just the PR to fix or further investigation welcome. |
…#44821) Fixes issue pandas-dev#44821. When trying to iterate on a subset of columns in a GroupBy object, it returned all columns, instead of the selected subset. GroupBy.__iter__ used self.obj instead of self._selected_obj (see PR pandas-dev#6570).
I did a pull request, but the following test pandas/pandas/tests/window/test_base_indexer.py Lines 411 to 454 in 63e7ef1
fails in line 452
with KeyError: "None of ['c'] are in the columns" Which should be expected, as it wasn't selected in line 440
Should I correct the test by selecting |
Fixes test due to changes in GroupBy.__iter__ (see pandas-dev#44821). As the column `c` wasn't selected on the manual computation, it failed when trying to set it as an index.
I have checked that this issue has not already been reported.
I have confirmed this bug exists on the latest version of pandas.
I have confirmed this bug exists on the master branch of pandas.
Reproducible Example
Issue Description
A subset of columns is not (always) selected with
DataFrameGroupBy.__getitem__
. Selecting a subset of column works forDataFrameGroupBy.apply
but not forDataFrameGroupBy.__iter__
.Expected Behavior
I expected
dg_ix
to contain onlyA
andB
as columns.Installed Versions
INSTALLED VERSIONS
commit : 945c9ed
python : 3.9.7.final.0
python-bits : 64
OS : Linux
OS-release : 5.14.18-300.fc35.x86_64
Version : #1 SMP Fri Nov 12 16:43:17 UTC 2021
machine : x86_64
processor : x86_64
byteorder : little
LC_ALL : None
LANG : en_US.UTF-8
LOCALE : en_US.UTF-8
pandas : 1.3.4
numpy : 1.21.4
pytz : 2021.3
dateutil : 2.8.2
pip : 21.3.1
setuptools : 59.1.0
Cython : None
pytest : 5.4.3
hypothesis : None
sphinx : None
blosc : None
feather : None
xlsxwriter : None
lxml.etree : None
html5lib : None
pymysql : None
psycopg2 : None
jinja2 : 3.0.3
IPython : 7.29.0
pandas_datareader: None
bs4 : None
bottleneck : None
fsspec : None
fastparquet : None
gcsfs : None
matplotlib : 3.3.2
numexpr : None
odfpy : None
openpyxl : None
pandas_gbq : None
pyarrow : None
pyxlsb : None
s3fs : None
scipy : 1.7.2
sqlalchemy : None
tables : None
tabulate : None
xarray : 0.20.1
xlrd : None
xlwt : None
numba : 0.53.1
The text was updated successfully, but these errors were encountered: