Skip to main content
Version: 7.9

mean

This function is used by Ignition's Expression language.

Description

Calculates the mean (a.k.a average) for the numbers in the given column of the given dataset or the mean of a series of numbers specified as arguments. When looking up the mean in a dataset, the column may be specified as an index or as a column name. Any null values in the column are ignored. If there are no rows in the dataset, null is returned.

Syntax

mean(dataset, columnIndex)

  • Parameters

    • DataSet dataset - The dataset to use.

    • int columnIndex - The index of the column to use. Must be a column index of the provided dataset.

  • Returns

    • int/float - The mean of the values in that column.

Syntax

mean(dataset, columnName)

  • Parameters

    • DataSet dataset - The dataset to use.

    • string columnName - The name of the column to search through. Must match a column name in the provided dataset.

  • Returns

    • int/float - The mean of the values in that column.

Syntax

mean(value[, value...])

  • Parameters

    • int/float value - A number. Can be as many values as needed. Can be either a float or an integer.
  • Returns

    • int/float - The mean of the values.

Examples

For example, suppose you had a table with this dataset in it:

ProductCodeQuantityWeight
BAN_0023803.243
BAN_0101209.928
APL_0001251.287
FWL_2203227.889
Code Snippet
mean({Root Container.Table.data}, "Weight") //... would return 5.58675
Code Snippet
mean(1,2,3) //... would return 2