### System information - **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)**: windows - **Modin version** (`modin.__version__`): latest - **Python version**: 3.8 - **Code we can use to reproduce**: ```python import modin.pandas as pd df = pd.read_csv("some.csv", index_col=[0,1,2]) df.reset_index().groupby(df.columns[:1]).count() # error ``` <!-- You can obtain the Modin version with python -c "import modin; print(modin.__version__)" --> ### Describe the problem <!-- Describe the problem clearly here. --> This only happens in a very corner case: when groupby `by` parameter contains 2 or more columns added from the `reset_index` call.