Share via


STDEV (U-SQL)

Summary

The STDEV aggregator returns the statistical standard deviation of 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

STDEV_Expression :=                                                                                      
     'STDEV' '(' ['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 STDEV
The following query returns the standard deviation for all salary values and the standard deviation from all distinct salary values.

@result =
    SELECT STDEV(Salary) AS STDEV_AllSalaries,
           STDEV(DISTINCT Salary) AS STDEV_DistinctSalaries
    FROM @employees;

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

B. STDEV per group
The following query determines the salary standard deviation for each department with the GROUP BY clause.

@result =
    SELECT DeptName,
           STDEV(Salary) AS STDEVSalaryByDept
    FROM @employees
    GROUP BY DeptName;

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

C. STDEV with OVER()
The OVER clause in the following query is empty which defines the "window" to include all rows. The query determines the salary standard deviation over the window - all employees.

@result =
    SELECT EmpName,
           STDEV(Salary) OVER() AS STDEV_AllSalaries
    FROM @employees;

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

D. STDEV over a defined window using OVER()
The OVER clause in the following query is DeptName. The query returns EmpName, DeptName, Salary, and the salary standard deviation over the window - DeptName.

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

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

See Also