{ "ns" : "http://zorba.io/modules/excel/statistical", "description" : " This is a library module offering a part of the set of statistical functions\n defined by Microsoft Excel 2003.\n", "sees" : [ "
Returns the average of the absolute deviations of data points from their mean.
", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "numbers", "type" : "xs:anyAtomicType", "occurence" : null, "description" : "Returns the average (arithmetic mean) of the arguments.
", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "numbers", "type" : "xs:anyAtomicType", "occurence" : null, "description" : "Calculates the average (arithmetic mean) of the values in the sequence of arguments.
", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "numbers", "type" : "xs:anyAtomicType", "occurence" : null, "description" : "Counts the number of cells that contain numbers or values castable to numeric.
", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "numbers", "type" : "xs:anyAtomicType", "occurence" : null, "description" : "Counts the number of values that are not empty.
", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "numbers", "type" : "xs:anyAtomicType", "occurence" : null, "description" : "Counts the empty values in a sequence.
", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "cells", "type" : "xs:anyAtomicType", "occurence" : null, "description" : "Returns the k-th largest value in a data set.
", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "numbers", "type" : "xs:anyAtomicType", "occurence" : null, "description" : "Returns the largest number in a sequence.
", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "numbers", "type" : "xs:anyAtomicType", "occurence" : null, "description" : "Returns the largest value in a list of arguments.
", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "numbers", "type" : "xs:anyAtomicType", "occurence" : null, "description" : "Returns the median of the given numbers.
", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "numbers", "type" : "xs:anyAtomicType", "occurence" : null, "description" : "Returns the smallest number in a sequence.
", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "numbers", "type" : "xs:anyAtomicType", "occurence" : null, "description" : "Returns the smallest value in a list of arguments.
", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "numbers", "type" : "xs:anyAtomicType", "occurence" : null, "description" : "Returns the most frequently occurring, or repetitive, value in a sequence.
", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "numbers", "type" : "xs:anyAtomicType", "occurence" : null, "description" : "Returns the k-th percentile of values in a sequence.
", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "numbers", "type" : "xs:anyAtomicType", "occurence" : null, "description" : "\n The formula is uses: (RANK - 1) / (size - 1) .\n", "summary" : "
Returns the rank of a value in a data set as a percentage of the data set.
", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "numbers", "type" : "xs:anyAtomicType", "occurence" : null, "description" : "This is the same as above, only that upper_limit is not specified.
", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "x_range", "type" : "xs:anyAtomicType", "occurence" : null, "description" : "Returns the probability that values in a range are between two limits.
", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "x_range", "type" : "xs:anyAtomicType", "occurence" : null, "description" : "Returns the quartile of a data set.
", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "numbers", "type" : "xs:anyAtomicType", "occurence" : null, "description" : "This RANK function is same as the above, only that $order_ascending is set by default to false.
", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "x", "type" : "xs:anyAtomicType", "occurence" : null, "description" : "Returns the rank of a number in a list of numbers.
", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "x", "type" : "xs:anyAtomicType", "occurence" : null, "description" : "\n sum((x - average_x)(y - average_y)) / sum((x - average_x)^2)
\n where average_x and average_y are computed with AVERAGE function.\n", "summary" : "
Returns the slope of the linear regression line through data points in known_y's and known_x's.
", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "known_y", "type" : "xs:anyAtomicType", "occurence" : null, "description" : "This function computes the k-th smallest value in a data set.
", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "numbers", "type" : "xs:anyAtomicType", "occurence" : null, "description" : "\n The formula is (x - mean) / standard_dev .\n", "summary" : "
Returns a normalized value from a distribution characterized by mean and standard_dev.
", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "x", "type" : "xs:anyAtomicType", "occurence" : null, "description" : "\n The formula is sum(x - average_x)^2 / (n - 1).
\n average_x is computed with AVERAGE function.
\n n is the count of numbers from the sequence, excluding empty values.\n", "summary" : "
Estimates variance based on a sample.
", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "numbers", "type" : "xs:anyAtomicType", "occurence" : null, "description" : "\n The formula is sum(x - average_x)^2 / (n - 1).
\n average_x is computed with AVERAGE function.
\n n is the size of sequence, including empty values.
\n", "summary" : "
Estimates variance based on a sample.
", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "numbers", "type" : "xs:anyAtomicType", "occurence" : null, "description" : "\n The formula is sum(x - average_x)^2 / n.
\n average_x is computed with AVERAGE function.
\n n is the count of numbers from the sequence, excluding empty values.
\n", "summary" : "
Calculates variance based on the entire population.
", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "numbers", "type" : "xs:anyAtomicType", "occurence" : null, "description" : "\n The formula is sum(x - average_x)^2 / n.
\n average_x is computed with AVERAGE function.
\n n is the size of sequence, including empty values.
\n", "summary" : "
Calculates variance based on the entire population.
", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "numbers", "type" : "xs:anyAtomicType", "occurence" : null, "description" : "