程序包 weka.core.pmml

类 Discretize

java.lang.Object
weka.core.pmml.Expression
weka.core.pmml.Discretize
所有已实现的接口:
Serializable

public class Discretize extends Expression
Class encapsulating a Discretize Expression.
版本:
$Revision 1.0 $
作者:
Mark Hall (mhall{[at]}pentaho{[dot]}com)
另请参阅:
  • 构造器详细资料

    • Discretize

      public Discretize(Element discretize, FieldMetaInfo.Optype opType, ArrayList<Attribute> fieldDefs) throws Exception
      Constructs a Discretize Expression
      参数:
      discretize - the Element containing the discretize expression
      opType - the optype of this Discretize Expression
      fieldDefs - the structure of the incoming fields
      抛出:
      Exception - if the optype is not categorical/ordinal or if there is a problem parsing this element
  • 方法详细资料

    • setFieldDefs

      public void setFieldDefs(ArrayList<Attribute> fieldDefs) throws Exception
      Set the field definitions for this Expression to use
      覆盖:
      setFieldDefs 在类中 Expression
      参数:
      fieldDefs - the field definitions to use
      抛出:
      Exception - if there is a problem setting the field definitions
    • getResult

      public double getResult(double[] incoming) throws Exception
      Get the result of evaluating the expression. In the case of a continuous optype, a real number is returned; in the case of a categorical/ordinal optype, the index of the nominal value is returned as a double.
      指定者:
      getResult 在类中 Expression
      参数:
      incoming - the incoming parameter values
      返回:
      the result of evaluating the expression
      抛出:
      Exception - if there is a problem computing the result
    • getResultCategorical

      public String getResultCategorical(double[] incoming) throws Exception
      Gets the result of evaluating the expression when the optype is categorical or ordinal as the actual String value.
      指定者:
      getResultCategorical 在类中 Expression
      参数:
      incoming - the incoming parameter values
      返回:
      the result of evaluating the expression
      抛出:
      Exception - if the optype is continuous
    • toString

      public String toString(String pad)
      覆盖:
      toString 在类中 Expression