Michael-J-Ward commented on code in PR #691: URL: https://github.com/apache/datafusion-python/pull/691#discussion_r1599133595
########## datafusion/tests/test_dataframe.py: ########## @@ -730,9 +730,9 @@ def test_describe(df): "max", "median", ], - "a": [3.0, 3.0, 2.0, 1.0, 1.0, 3.0, 2.0], - "b": [3.0, 3.0, 5.0, 1.0, 4.0, 6.0, 5.0], - "c": [3.0, 3.0, 7.0, 1.7320508075688772, 5.0, 8.0, 8.0], + "a": [3.0, 0.0, 2.0, 1.0, 1.0, 3.0, 2.0], + "b": [3.0, 0.0, 5.0, 1.0, 4.0, 6.0, 5.0], + "c": [3.0, 0.0, 7.0, 1.7320508075688772, 5.0, 8.0, 8.0], Review Comment: `null_count` was fixed upstream in https://github.com/apache/datafusion/pull/10260 The underlying data being described: ``` >>> print(df) DataFrame() +---+---+---+ | a | b | c | +---+---+---+ | 1 | 4 | 8 | | 2 | 5 | 5 | | 3 | 6 | 8 | +---+---+---+ ``` -- 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...@datafusion.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For additional commands, e-mail: github-h...@datafusion.apache.org