AlenkaF commented on issue #46187:
URL: https://github.com/apache/arrow/issues/46187#issuecomment-2820436942

   Hi! You need to use `pyarrow.compute` module to do operations on PyArrow 
arrays:
   
   ```python
   >>> import pyarrow.compute as pc 
   >>> pc.and_(a, b)
   <pyarrow.lib.BooleanArray object at 0x7c651d911000>
   [
     false,
     false,
     false,
     true
   ]
   >>> pc.or_(a, b)
   <pyarrow.lib.BooleanArray object at 0x7c64e7292f20>
   [
     false,
     true,
     true,
     true
   ]
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to