Richard Shadrach

Results 436 comments of Richard Shadrach

@FrnRmn - you're definitely on the right track here! The links should work, and for this issue we want to mention `Styler.to_excel` and not just `Styler`.

@jbrockmendel - I've implemented the EA paths. There is a bit of a discrepancy between pd.factorize and EA's factorize (as well as factorize_array). Namely, the former can take `na_sentinel=None` whereas...

Thanks for the comments @jbrockmendel, ready for another go. > I agree on the lack of clarity, would like to see this cleaned up (separate PR(s)) Opened #46910

@jbrockmendel - Based on the discussion in #46910, I reworked the handling of na_sentinel in factorize. Instead of adding `dropna`, this PR now allows `na_sentinel=None`.

@jbrockmendel Something is necessary, but I like the idea of deprecating specifying na_sentinel in pd.factorize and changing EA's factorize to match what pd.factorize will look like in 2.0. Let's wait...

I don't know how we can determine what we should get back when we have nothing to go on. Consider: ``` df = pd.DataFrame(columns=["a", "b"]) df.apply(lambda x: x["a"], axis=1) df.apply(lambda...

Looking at this again, `pandas.core.apply.FrameApply.apply_empty_result` is attempting to pass an empty Series to discern the shape of the output. However because that empty Series is not able to have index...