Function
Description
This function is used to find the population standard deviation of a group of values referred to by the first argument. The second argument, if there is one, gives the group by field name.
Arguments
Return type
Returns a Number value.
Examples
Number x = PopulationStdDev([1.0, 2.0, 3.0, 4.5, 45.0, 67.0])Number x[6] = [1.0, 2.0, 3.0, 4.5, 45.0, 67.0];
Number y = PopulationStdDev(x)Number x = PopulationStdDev(@dbfield)Number x = PopulationStdDev(@formula)Number x = PopulationStdDev(@dbfield, "group_field")Number x = PopulationStdDev(@dbfield, @"group_field")Number x = PopulationStdDev(@dbfield, @parameter)Note: If a field_variable is assigned to a variable, for example X, the variable X will lose the characteristic of representing a group of values. The following formula will then be treated as incorrect.
Number x = @dbfield;
Number y = PopulationStdDev(x); // system will prompt you that there is no such kind of function.