1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
from agate.aggregations.base import Aggregation
from agate.data_types import Date, DateTime, Number, TimeDelta
from agate.exceptions import DataTypeError
class Max(Aggregation):
"""
Find the maximum value in a column.
This aggregation can be applied to columns containing :class:`.Date`,
:class:`.DateTime`, or :class:`.Number` data.
:param column_name:
The name of the column to be searched.
"""
def __init__(self, column_name):
self._column_name = column_name
def get_aggregate_data_type(self, table):
column = table.columns[self._column_name]
if isinstance(column.data_type, (Date, DateTime, Number, TimeDelta)):
return column.data_type
def validate(self, table):
column = table.columns[self._column_name]
if not isinstance(column.data_type, (Date, DateTime, Number, TimeDelta)):
raise DataTypeError('Min can only be applied to columns containing DateTime, Date or Number data.')
def run(self, table):
column = table.columns[self._column_name]
data = column.values_without_nulls()
if data:
return max(data)
|