类 Functions
- java.lang.Object
-
- org.apache.flink.ml.Functions
-
public class Functions extends Object
Built-in table functions for data transformations.
-
-
嵌套类概要
嵌套类 修饰符和类型 类 说明 static classFunctions.ArrayToVectorFunctionAScalarFunctionthat converts a column of arrays of numeric type into a column ofDenseVectorinstances.static classFunctions.VectorToArrayFunctionAScalarFunctionthat converts a column ofVectors into a column of double arrays.
-
构造器概要
构造器 构造器 说明 Functions()
-
方法概要
所有方法 静态方法 具体方法 修饰符和类型 方法 说明 static org.apache.flink.table.api.ApiExpressionarrayToVector(Object... arguments)Converts a column of arrays of numeric type into a column ofDenseVectorinstances.static org.apache.flink.table.api.ApiExpressionvectorToArray(Object... arguments)Converts a column ofVectors into a column of double arrays.
-
-
-
方法详细资料
-
vectorToArray
public static org.apache.flink.table.api.ApiExpression vectorToArray(Object... arguments)
Converts a column ofVectors into a column of double arrays.
-
arrayToVector
public static org.apache.flink.table.api.ApiExpression arrayToVector(Object... arguments)
Converts a column of arrays of numeric type into a column ofDenseVectorinstances.
-
-