Modifier and Type | Method | Description |
---|---|---|
abstract Boolean |
BooleanAggregateFunction.summarize(BooleanColumn column) |
Returns a Boolean value as a result of applying this function to the given column
|
abstract Double |
BooleanDoubleAggregateFunction.summarize(BooleanColumn column) |
Returns a double that is the result of applying this function to the given column
|
abstract Integer |
BooleanIntAggregateFunction.summarize(BooleanColumn column) |
Returns an Integer as a result of applying this function to the given column
|
Modifier and Type | Method | Description |
---|---|---|
BooleanColumn |
BooleanColumn.append(boolean b) |
Appends b to the end of this column and returns this column
|
BooleanColumn |
BooleanColumn.append(byte b) |
Appends b to the end of this column and returns this column
|
BooleanColumn |
BooleanColumn.append(Boolean b) |
Appends value to the bottom of this column and return this column
|
BooleanColumn |
BooleanColumn.append(Column<Boolean> column) |
Appends all the values in the argument to the bottom of this column and return this column
|
BooleanColumn |
BooleanColumn.appendCell(String object) |
Add one element to the bottom of this column and set its value to the parsed value of the given
String.
|
BooleanColumn |
BooleanColumn.appendCell(String object,
AbstractColumnParser<?> parser) |
Add one element to the bottom of this column and set its value to the parsed value of the given
String, as performed by the given parser
|
BooleanColumn |
BooleanColumn.appendMissing() |
Appends a missing value appropriate to the column
|
BooleanColumn |
BooleanColumn.appendObj(Object obj) |
Appends the given value to the bottom of this column and return this column
|
BooleanColumn |
BooleanColumn.copy() |
Returns a deep copy of the receiver
|
static BooleanColumn |
BooleanColumn.create(String name) |
Returns a new, empty Boolean column with the given name.
|
static BooleanColumn |
BooleanColumn.create(String name,
boolean... values) |
Returns a new Boolean column with the given name and values
|
static BooleanColumn |
BooleanColumn.create(String name,
int initialSize) |
Returns a new Boolean column of the given size.
|
static BooleanColumn |
BooleanColumn.create(String name,
Boolean[] values) |
Returns a new Boolean column with the given name and values
|
static BooleanColumn |
BooleanColumn.create(String name,
Collection<Boolean> values) |
Returns a new Boolean column with the given name and values
|
static BooleanColumn |
BooleanColumn.create(String name,
Stream<Boolean> values) |
Returns a new Boolean column with the given name and values
|
static BooleanColumn |
BooleanColumn.create(String name,
Selection hits,
int columnSize) |
Returns a new Boolean column of the given size.
|
BooleanColumn |
BooleanColumn.emptyCopy() |
Returns a copy of the receiver with no data.
|
BooleanColumn |
BooleanColumn.emptyCopy(int rowSize) |
Returns an empty copy of the receiver, with its internal storage initialized to the given row
size.
|
BooleanColumn |
BooleanColumn.fillWith(it.unimi.dsi.fastutil.booleans.BooleanIterable iterable) |
|
BooleanColumn |
BooleanColumn.fillWith(it.unimi.dsi.fastutil.booleans.BooleanIterator iterator) |
|
BooleanColumn |
BooleanColumn.fillWith(Supplier<Boolean> supplier) |
|
BooleanColumn |
BooleanColumn.lag(int n) |
Returns a column of the same type and size as the receiver, containing the receivers values
offset by n.
|
BooleanColumn |
BooleanColumn.lead(int n) |
Returns a column of the same type as the receiver, containing the receivers values offset -n
For example if you lead a column containing 2, 3, 4 by 1, you get a column containing 3, 4, NA.
|
BooleanColumn |
BooleanColumn.removeMissing() |
Returns a copy of this column with the missing values removed
|
BooleanColumn |
BooleanColumn.set(int i,
boolean b) |
Sets the value at i to b, and returns this column
|
BooleanColumn |
BooleanColumn.set(int i,
Boolean val) |
Sets the value at index row to the given value and return this column
|
BooleanColumn |
BooleanColumn.set(int row,
String stringValue,
AbstractColumnParser<?> parser) |
Sets the value at row to the parsed value of the given String using the given parser and
returns this column
|
BooleanColumn |
BooleanColumn.set(Selection rowSelection,
boolean newValue) |
Conditionally update this column, replacing current values with newValue for all rows where the
current value matches the selection criteria
|
BooleanColumn |
BooleanColumn.set(Selection rowSelection,
byte newValue) |
Conditionally update this column, replacing current values with newValue for all rows where the
current value matches the selection criteria.
|
BooleanColumn |
BooleanColumn.setMissing(int i) |
Sets the value at index i to the missing-value indicator for this column type, and return this
column
|
BooleanColumn |
BooleanColumn.unique() |
Returns a column of the same type containing only the unique values
|
BooleanColumn |
BooleanColumn.where(Selection selection) |
Returns a new column containing the subset referenced by the
Selection |
Modifier and Type | Method | Description |
---|---|---|
List<BooleanColumn> |
StringColumn.getDummies() |
Returns a list of boolean columns suitable for use as dummy variables in, for example,
regression analysis, select 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 | Description |
---|---|---|
Selection |
BooleanColumn.isEqualTo(BooleanColumn other) |
Modifier and Type | Method | Description |
---|---|---|
default BooleanColumn |
BooleanMapUtils.and(BooleanColumn... columns) |
|
default BooleanColumn |
BooleanMapUtils.andNot(BooleanColumn... columns) |
Returns a column made by combining the receiver and each of the arguments using the operation:
A andNot V.
|
BooleanColumn |
BooleanColumnType.create(String name) |
|
default BooleanColumn |
BooleanMapUtils.or(BooleanColumn... columns) |
Modifier and Type | Method | Description |
---|---|---|
default BooleanColumn |
BooleanMapUtils.and(BooleanColumn... columns) |
|
default BooleanColumn |
BooleanMapUtils.andNot(BooleanColumn... columns) |
Returns a column made by combining the receiver and each of the arguments using the operation:
A andNot V.
|
Selection |
BooleanFilters.isEqualTo(BooleanColumn other) |
|
default BooleanColumn |
BooleanMapUtils.or(BooleanColumn... columns) |
Modifier and Type | Method | Description |
---|---|---|
List<BooleanColumn> |
ByteDictionaryMap.getDummies() |
Returns a list of boolean columns suitable for use as dummy variables in, for example,
regression analysis, select 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)
|
List<BooleanColumn> |
DictionaryMap.getDummies() |
|
List<BooleanColumn> |
IntDictionaryMap.getDummies() |
Returns a list of boolean columns suitable for use as dummy variables in, for example,
regression analysis, select 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)
|
List<BooleanColumn> |
ShortDictionaryMap.getDummies() |
Returns a list of boolean columns suitable for use as dummy variables in, for example,
regression analysis, select 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 | Description |
---|---|---|
default BooleanColumn |
TemporalMapFunctions.missingValues() |
Modifier and Type | Method | Description |
---|---|---|
T |
BooleanFilterSpec.isEqualTo(BooleanColumn other) |
|
Function<Table,Selection> |
DeferredBooleanColumn.isEqualTo(BooleanColumn other) |
Constructor | Description |
---|---|
ByteIndex(BooleanColumn column) |
Constructs an index for the given column
|
Modifier and Type | Method | Description |
---|---|---|
BooleanColumn |
Relation.booleanColumn(int columnIndex) |
Returns the DoubleColumn at the given 0-based index if present.
|
BooleanColumn |
Relation.booleanColumn(String columnName) |
Returns a BooleanColumn with the given name if it is present in this Relation.
|
BooleanColumn[] |
Relation.booleanColumns() |
Returns all BooleanColumns in this Relation as an Array
|
Copyright © 2022. All rights reserved.