FunctionsvarianceVersion: NextOn this pagevarianceComputes the variance of all grouped values.variance(xs:list) -> floatDescriptionThe variance function returns the variance of all numeric values in xs.xs: listThe values to evaluate.ExamplesCompute the variance of valuesfrom [ {x: 1}, {x: 2}, {x: 3}, ] summarize variance_value=variance(x){variance_value: 0.666}See Alsostddev, mean