-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
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
BUG: Fix pyarrow categoricals not working for pivot and multiindex #61193
base: main
Are you sure you want to change the base?
BUG: Fix pyarrow categoricals not working for pivot and multiindex #61193
Conversation
d9c789b
to
c8df24a
Compare
…pyarrow dictionary categoricals Relates to pandas-dev#53051 Code for fix taken and adapted from pandas-dev#59099
c8df24a
to
3b6a2fd
Compare
3b6a2fd
to
864da12
Compare
# Ignore deprecation raised by old versions of pyarrow. Already fixed in | ||
# newer versions | ||
@pytest.mark.filterwarnings("ignore:Passing a BlockManager:DeprecationWarning") | ||
def test_pivot_with_pyarrow_categorical(self): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you create these test without going through parquet?
@@ -2851,3 +2852,43 @@ def test_pivot_margins_with_none_index(self): | |||
), | |||
) | |||
tm.assert_frame_equal(result, expected) | |||
|
|||
# Ignore deprecation raised by old versions of pyarrow. Already fixed in |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All these comments can be removed
- Bug in :meth:`Series.convert_dtypes` with ``dtype_backend="pyarrow"`` where empty :class:`CategoricalDtype` :class:`Series` raised an error or got converted to ``null[pyarrow]`` (:issue:`59934`) | ||
- |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you undo this?
DataFrame.pivot
fails withpyarrow
backend if variable is already encoded asdictionary
#53051doc/source/whatsnew/vX.X.X.rst
file if fixing a bug or adding a new feature.Disclaimer
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.