Package com.bayesserver.data.discovery
Class DiscretizationColumn
- java.lang.Object
-
- com.bayesserver.data.discovery.DiscretizationColumn
-
public final class DiscretizationColumn extends Object
Identifies a column of data and how it is to be discretized.
-
-
Constructor Summary
Constructors Constructor Description DiscretizationColumn(String columnName)Initializes a new instance of theDiscretizationColumnclass.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetColumnName()Gets the name of the column of data to be discretized.DiscretizationOptionsgetOptions()Gets the discretization options for this column of data.voidsetColumnName(String value)Sets the name of the column of data to be discretized.
-
-
-
Constructor Detail
-
DiscretizationColumn
public DiscretizationColumn(String columnName)
Initializes a new instance of theDiscretizationColumnclass.- Parameters:
columnName- The name of the column of data to discretize.
-
-
Method Detail
-
getOptions
public DiscretizationOptions getOptions()
Gets the discretization options for this column of data.
-
getColumnName
public String getColumnName()
Gets the name of the column of data to be discretized.
-
setColumnName
public void setColumnName(String value)
Sets the name of the column of data to be discretized.
-
-