diff --git a/spec/API_specification/statistical_functions.md b/spec/API_specification/statistical_functions.md index 1f5c6f2ab..39ea18280 100644 --- a/spec/API_specification/statistical_functions.md +++ b/spec/API_specification/statistical_functions.md @@ -24,7 +24,7 @@ Calculates the maximum value of the input array `x`. - **x**: _<array>_ - - input array. + - input array. Should have a numeric data type. - **axis**: _Optional\[ Union\[ int, Tuple\[ int, ... ] ] ]_ @@ -49,7 +49,7 @@ Calculates the arithmetic mean of the input array `x`. - **x**: _<array>_ - - input array. + - input array. Should have a floating-point data type. - **axis**: _Optional\[ Union\[ int, Tuple\[ int, ... ] ] ]_ @@ -74,7 +74,7 @@ Calculates the minimum value of the input array `x`. - **x**: _<array>_ - - input array. + - input array. Should have a numeric data type. - **axis**: _Optional\[ Union\[ int, Tuple\[ int, ... ] ] ]_ @@ -99,7 +99,7 @@ Calculates the product of input array `x` elements. - **x**: _<array>_ - - input array. + - input array. Should have a numeric data type. - **axis**: _Optional\[ Union\[ int, Tuple\[ int, ... ] ] ]_ @@ -124,7 +124,7 @@ Calculates the standard deviation of the input array `x`. - **x**: _<array>_ - - input array. + - input array. Should have a floating-point data type. - **axis**: _Optional\[ Union\[ int, Tuple\[ int, ... ] ] ]_ @@ -153,7 +153,7 @@ Calculates the sum of the input array `x`. - **x**: _<array>_ - - input array. + - input array. Should have a numeric data type. - **axis**: _Optional\[ Union\[ int, Tuple\[ int, ... ] ] ]_ @@ -178,7 +178,7 @@ Calculates the variance of the input array `x`. - **x**: _<array>_ - - input array. + - input array. Should have a floating-point data type. - **axis**: _Optional\[ Union\[ int, Tuple\[ int, ... ] ] ]_