pitrou commented on issue #36753: URL: https://github.com/apache/arrow/issues/36753#issuecomment-2911808044
Note this also applies to diffing: ```python >>> a = pa.array([1.2, 3.5, None]) >>> b = pa.array([1.2, 3.7, None]) >>> a.diff(b) '\n@@ -1, +1 @@\n-3.5\n+3.7\n' >>> a.cast(pa.float16()).diff(b.cast(pa.float16())) '\n@@ -1, +1 @@\n-17152\n+17254\n' ``` -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
