aggregates#

relationalai.std

The relationalai.std.aggregates namespace contains functions for performing aggregations, such as count() and sum() on values produced by Producer objects.

To use functions from relationalai.std.aggregates, include the following import at the top of your Python file:

#from relationalai.std import aggregates

If you would like a shorter name than aggregates, you may rename it as agg:

#from relationalai.std import aggregates as agg

Functions#