Returns average (mean) of all values in the column. :samp:`Avg("{FIELD_NAME}")`
| 128 | |
| 129 | |
| 130 | class Avg(Aggregate): |
| 131 | """ |
| 132 | Returns average (mean) of all values in the column. |
| 133 | |
| 134 | :samp:`Avg("{FIELD_NAME}")` |
| 135 | """ |
| 136 | |
| 137 | database_func = functions.Avg |
| 138 | populate_field_object = True |
no outgoing calls