Aokizy

Results 7 comments of Aokizy

Hi,I’d like to help fix this issue. Is it okay if I work on it? @Alvaro-Kothe

I'd like to work on inlining the docstrings in pandas\core\resample.py

I'd also like to work on inlining the docstrings in pandas\core\window\rolling.py

Thank you for the clarification. I understand the blocker is that pc.list_element currently only accepts scalar indices. To unblock users in the short term, I can implement a workaround for...

@rhshadrach -Thanks for the direction. I've looked into the code, and I believe there's a small misunderstanding about those two commented lines. The issue is that pc.add(key, pc.list_value_length(self._pa_array)) would produce...

codes for Option1: ```python if key < 0: lengths = pc.list_value_length(self._pa_array) min_length = min([l.as_py() for l in lengths if l is not None]) if key < -min_length: raise IndexError(f"list index...