Uses of Class
com.pervasive.datarush.analytics.functions.StatsFunctions.NormalizeMethod
-
Packages that use StatsFunctions.NormalizeMethod Package Description com.pervasive.datarush.analytics.functions Provides various statistics functions.com.pervasive.datarush.analytics.stats Provides various statistics, Data Summarizer, and Data Quality Analyzer. -
-
Uses of StatsFunctions.NormalizeMethod in com.pervasive.datarush.analytics.functions
Methods in com.pervasive.datarush.analytics.functions that return StatsFunctions.NormalizeMethod Modifier and Type Method Description static StatsFunctions.NormalizeMethod
StatsFunctions.NormalizeMethod. valueOf(String name)
Returns the enum constant of this type with the specified name.static StatsFunctions.NormalizeMethod[]
StatsFunctions.NormalizeMethod. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.pervasive.datarush.analytics.functions with parameters of type StatsFunctions.NormalizeMethod Modifier and Type Method Description static ScalarValuedFunction
StatsFunctions. normalizeFunction(StatsFunctions.NormalizeMethod method, ScalarValuedFunction expr, AbstractNumericInfo<?> numInfo)
Create a normalization function for the given function expression.static ScalarValuedFunction
StatsFunctions. normalizeFunction(StatsFunctions.NormalizeMethod method, String field, AbstractNumericInfo<?> numInfo)
Create a normalization function for the given input field. -
Uses of StatsFunctions.NormalizeMethod in com.pervasive.datarush.analytics.stats
Methods in com.pervasive.datarush.analytics.stats that return StatsFunctions.NormalizeMethod Modifier and Type Method Description StatsFunctions.NormalizeMethod
NormalizeDescriptor. getMethod()
Get the normalization method of the descriptor.StatsFunctions.NormalizeMethod
NormalizeValues. getMethod()
Get the normalization method configured.Methods in com.pervasive.datarush.analytics.stats with parameters of type StatsFunctions.NormalizeMethod Modifier and Type Method Description static NormalizeDescriptor[]
NormalizeDescriptor. descriptors(StatsFunctions.NormalizeMethod method, String... fieldNames)
Build descriptors for the given fields and method.static NormalizeDescriptor[]
NormalizeDescriptor. descriptors(StatsFunctions.NormalizeMethod method, Collection<String> reservedNames, String... fieldNames)
void
NormalizeValues. setMethod(StatsFunctions.NormalizeMethod method)
Set the normalization method to use.Constructors in com.pervasive.datarush.analytics.stats with parameters of type StatsFunctions.NormalizeMethod Constructor Description NormalizeDescriptor(String fieldName, StatsFunctions.NormalizeMethod method)
Construct a normalization descriptor.NormalizeDescriptor(String inputFieldName, StatsFunctions.NormalizeMethod method, String outputFieldName)
Construct a normalization descriptor.
-