DataFunctionsProtocol
public protocol DataFunctionsProtocol
Undocumented
-
Returns the highest value in the data set.
Declaration
Swift
func maxValue() -> Double
Return Value
Highest value in data set.
-
Returns the lowest value in the data set.
Declaration
Swift
func minValue() -> Double
Return Value
Lowest value in data set.
-
Returns the average value from the data set.
Declaration
Swift
func average() -> Double
Return Value
Average of values in data set.