Share via


VARP (U-SQL)

Summary

The VARP aggregator returns the statistical variance for the population for all nonnull values in the group or returns null if all the input values are null. The values have to be numeric or an error is raised.

The identity value is null.

Syntax

VARP_Expression :=                                                                                       
     'VARP' '(' ['DISTINCT'] expression ')'.

Remarks

  • DISTINCT
    Optionally allows to de-duplicate the values returned by the expression inside the group before aggregation.

  • expression
    The C# expression (including column references) that gets aggregated. The type of the expression has to be a numeric type or an error is raised.

Return Type

The return type is double?.

Usage in Windowing Expression

This aggregator can be used in a windowing expression without any additional restrictions.

Examples

  • The examples can be executed in Visual Studio with the Azure Data Lake Tools plug-in.

  • The scripts can be executed locally. An Azure subscription and Azure Data Lake Analytics account is not needed when executed locally.

  • The examples below are based on the dataset defined below. Ensure your execution includes the rowset variable.

      @employees = 
          SELECT * FROM 
              ( VALUES
              (1, "Noah",   "Engineering", 100, 10000),
              (2, "Sophia", "Engineering", 100, 20000),
              (3, "Liam",   "Engineering", 100, 30000),
              (4, "Emma",   "HR",          200, 8000),
              (5, "Jacob",  "HR",          200, 8000),
              (6, "Olivia", "HR",          200, 8000),
              (7, "Mason",  "Executive",   300, 50000),
              (8, "Ava",    "Marketing",   400, 15000),
              (9, "Ethan",  "Marketing",   400, 9000) 
              ) AS T(EmpID, EmpName, DeptName, DeptID, Salary);
    

A. Using VARP
The following query returns the statistical variance for the population of all: 1) salary values, and 2) distinct salary values.

@result =
    SELECT VARP(Salary) AS VARP_AllSalaries,
           VARP(DISTINCT Salary) AS VARP_DistinctSalaries
    FROM @employees;

OUTPUT @result
TO "/Output/ReferenceGuide/varp/exampleA.csv"
USING Outputters.Csv();

B. VARP per group
The following query determines the statistical variance for the salary population for each department with the GROUP BY clause.

@result =
    SELECT DeptName,
           VARP(Salary) AS VARPSalaryByDept
    FROM @employees
    GROUP BY DeptName;

OUTPUT @result
TO "/Output/ReferenceGuide/varp/exampleB.csv"
USING Outputters.Csv();

C. VARP with OVER()
The OVER clause in the following query is empty which defines the "window" to include all rows. The query determines the statistical variance for the salary population over the window - all employees.

@result =
    SELECT EmpName,
           VARP(Salary) OVER() AS VARP_AllSalaries
    FROM @employees;

OUTPUT @result
TO "/Output/ReferenceGuide/varp/exampleC.csv"
USING Outputters.Csv();

D. VARP over a defined window using OVER()
The OVER clause in the following query is DeptName. The query returns EmpName, DeptName, Salary, and the statistical variance for the salary population over the window - DeptName.

@result =
    SELECT EmpName,
           DeptName,
           Salary,
           VARP(Salary) OVER(PARTITION BY DeptName) AS VARPSalaryByDept
    FROM @employees;

OUTPUT @result
TO "/Output/ReferenceGuide/varp/exampleD.csv"
USING Outputters.Csv();

See Also