Filter berdasarkan kategori:
Menampilkan 4 dari 28 fungsi dalam kategori Aggregate
SUM
Calculates the total sum of numeric values in a column. Supports multiple numeric types and is highly efficient for large-scale data analysis in BigQuery.
Tipe hasil:
Same as input type (INT64, FLOAT64, NUMERIC, or BIGNUMERIC)VARIANCE
Calculates the sample variance of numeric values. Variance is the square of the standard deviation. This is an alias for VAR_SAMP.
Tipe hasil:
FLOAT64VAR_POP
Calculates the population variance of numeric values. Uses the N divisor formula, suitable when the data represents an entire population.
Tipe hasil:
FLOAT64VAR_SAMP
Calculates the sample variance of numeric values. Uses the N-1 divisor formula (Bessel's correction), suitable for sample data.
Tipe hasil:
FLOAT64