We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21dd366 commit 5d96799Copy full SHA for 5d96799
1 file changed
python/pyspark/statcounter.py
@@ -124,5 +124,5 @@ def sampleStdev(self):
124
return math.sqrt(self.sampleVariance())
125
126
def __repr__(self):
127
- return "(count: %s, mean: %s, stdev: %s)" % (self.count(), self.mean(), self.stdev())
+ return "(count: %s, mean: %s, stdev: %s, max: %s, min: %s)" % (self.count(), self.mean(), self.stdev(), self.max(), self.min())
128
0 commit comments