Github user davies commented on a diff in the pull request:
https://github.com/apache/spark/pull/1725#discussion_r15724621
--- Diff: python/pyspark/statcounter.py ---
@@ -20,6 +20,14 @@
import copy
import math
+_have_numpy = False
+try:
+ from numpy import maximum, minimum, sqrt
+ _have_numpy = True
+except:
--- End diff --
How about do in this way:
try:
from numpy import maximum, minimum, sqrt
except ImportError:
maximum = max
minimum = min
sqrt = math.sqrt
This will simplify later codes.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---