ORM::avg PHP Method

avg() public method

Will return the average value of the choosen column.
public avg ( $column )
    public function avg($column)
    {
        return $this->_call_aggregate_db_function(__FUNCTION__, $column);
    }
ORM