Skip to content
This repository was archived by the owner on Dec 2, 2020. It is now read-only.

Advanced Calculations

Boris-Em edited this page Jun 10, 2014 · 9 revisions

In addition to recording and displaying data, BEMSimpleLineGraph can also perform advanced calculations with your data. All calculation methods are available publicly and begin with "calculate". Here is the full list of the available calculations:

  • Average: calculatePointValueAverage

Calculates the average (mean) of all points on the line graph.

  • Sum: calculatePointValueSum

Calculates the sum of all points on the line graph.

  • Median: calculatePointValueMedian

Calculates the median of all points on the line graph.

  • Mode: calculatePointValueMode

Calculates the mode of all points on the line graph.

  • Standard deviation: calculateLineGraphStandardDeviation

Calculates the standard deviation of all points on the line graph.

  • Minimum: calculateMinimumPointValue

Calculates the minimum value of all points on the line graph.

  • Maximum: calculateMaximumPointValue

Calculates the maximum value of all points on the line graph.

Clone this wiki locally