alamb commented on pull request #9416: URL: https://github.com/apache/arrow/pull/9416#issuecomment-802829398
FWIW, pandas also seems to ignore `nan` values for min/max (which kind of makes sense to me): ``` Type "help", "copyright", "credits" or "license" for more information. >>> import pandas as pa; >>> from math import nan >>> s = pa.Series([1,2,3,4,nan]) >>> s.max() 4.0 >>> s.min() 1.0 >>> ``~ -- 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. For queries about this service, please contact Infrastructure at: [email protected]
