Package | Description |
---|---|
tech.tablesaw.api | |
tech.tablesaw.api.ml.classification | |
tech.tablesaw.mapping | |
tech.tablesaw.store | |
tech.tablesaw.table |
Modifier and Type | Method and Description |
---|---|
BooleanColumn |
BooleanColumn.copy() |
BooleanColumn |
BooleanColumn.emptyCopy() |
BooleanColumn |
BooleanColumn.emptyCopy(int rowSize) |
BooleanColumn |
Table.selectIntoColumn(String newColumnName,
Filter filter) |
BooleanColumn |
Table.selectIntoColumn(String newColumnName,
Selection selection) |
BooleanColumn |
BooleanColumn.unique() |
Modifier and Type | Method and Description |
---|---|
List<BooleanColumn> |
CategoryColumn.getDummies()
Returns a list of boolean columns suitable for use as dummy variables in, for example, regression analysis,
selectWhere a column of categorical data must be encoded as a list of columns, such that each column represents
a single category and indicates whether it is present (1) or not present (0)
|
Modifier and Type | Method and Description |
---|---|
Selection |
BooleanColumn.isEqualTo(BooleanColumn other) |
Modifier and Type | Method and Description |
---|---|
static Lda |
Lda.learn(BooleanColumn labels,
double[] priors,
double tolerance,
NumericColumn... predictors) |
static Lda |
Lda.learn(BooleanColumn labels,
double[] priors,
NumericColumn... predictors) |
static LogisticRegression |
LogisticRegression.learn(BooleanColumn labels,
double lambda,
double tolerance,
int maxIters,
NumericColumn... predictors) |
static LogisticRegression |
LogisticRegression.learn(BooleanColumn labels,
double lambda,
NumericColumn... predictors) |
static Lda |
Lda.learn(BooleanColumn labels,
NumericColumn... predictors) |
static LogisticRegression |
LogisticRegression.learn(BooleanColumn labels,
NumericColumn... predictors) |
static Knn |
Knn.learn(int k,
BooleanColumn labels,
NumericColumn... predictors) |
ConfusionMatrix |
Lda.predictMatrix(BooleanColumn labels,
NumericColumn... predictors) |
ConfusionMatrix |
Knn.predictMatrix(BooleanColumn labels,
NumericColumn... predictors) |
ConfusionMatrix |
LogisticRegression.predictMatrix(BooleanColumn labels,
NumericColumn... predictors) |
Modifier and Type | Method and Description |
---|---|
default BooleanColumn |
BooleanMapUtils.and(BooleanColumn... columns) |
default BooleanColumn |
BooleanMapUtils.or(BooleanColumn... columns) |
Modifier and Type | Method and Description |
---|---|
default BooleanColumn |
BooleanMapUtils.and(BooleanColumn... columns) |
default BooleanColumn |
BooleanMapUtils.or(BooleanColumn... columns) |
Modifier and Type | Method and Description |
---|---|
static void |
StorageManager.writeColumn(String fileName,
BooleanColumn column) |
Modifier and Type | Method and Description |
---|---|
BooleanColumn |
Relation.booleanColumn(int columnIndex) |
BooleanColumn |
TemporaryView.booleanColumn(int columnIndex) |
BooleanColumn |
Relation.booleanColumn(String columnName) |
BooleanColumn |
TemporaryView.booleanColumn(String columnName) |
Copyright © 2017. All rights reserved.