Skip to content

Commit

Permalink
Merge.
Browse files Browse the repository at this point in the history
  • Loading branch information
onyxfish committed Dec 19, 2016
2 parents e021f95 + 73345eb commit c46e27d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions agatestats/computations.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ def validate(self, table):
if not isinstance(column.data_type, agate.Number):
raise agate.DataTypeError('ZScores column must contain Number data.')

def run(self, table):
self._mean = table.aggregate(agate.Mean(self._column_name))
self._sd = table.aggregate(agate.StDev(self._column_name))

Expand Down

0 comments on commit c46e27d

Please sign in to comment.