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 theDiscretizationColumn
class.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getColumnName()
Gets the name of the column of data to be discretized.DiscretizationOptions
getOptions()
Gets the discretization options for this column of data.void
setColumnName(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 theDiscretizationColumn
class.- 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.
-
-