Spaces:
Sleeping
Sleeping
File size: 207 Bytes
6abee0e |
1 2 3 4 5 6 7 8 9 10 |
from enum import Enum
# create an enum with all aggregation types
class Aggregation(Enum):
NONE = 0
SUM = 1
AVERAGE = 2
COUNT = 3
id2aggregation = {x.value: x.name for x in Aggregation} |