Skip to content

Commit cf2b79c

Browse files
Update better-than-average-calculating-geometric-means-using-SQL.md
1 parent 552c19a commit cf2b79c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

better-than-average-calculating-geometric-means-using-SQL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Geometric means are also appropriate when summarizing ratios or percentages. In
3333
select EXP(SUM(LN(pay))/COUNT(pay)) from employee;
3434
```
3535

36-
Alternatively if you are using Google BigQuery, you can create User Defined Aggregate Function for Geometric Mean as following:
36+
Alternatively if you are using Google BigQuery, you can create [User Defined Aggregate Function](UDAF-in-google-bigquery.md) for Geometric Mean as following:
3737

3838
```sql
3939
CREATE TEMP AGGREGATE FUNCTION geometric_mean(

0 commit comments

Comments
 (0)