Uses of Class
tech.tablesaw.api.BooleanColumn
Packages that use BooleanColumn
Package
Description
-
Uses of BooleanColumn in tech.tablesaw.aggregate
Methods in tech.tablesaw.aggregate with parameters of type BooleanColumnModifier and TypeMethodDescriptionabstract Boolean
BooleanAggregateFunction.summarize
(BooleanColumn column) Returns a Boolean value as a result of applying this function to the given columnabstract Double
BooleanDoubleAggregateFunction.summarize
(BooleanColumn column) Returns a double that is the result of applying this function to the given columnabstract Integer
BooleanIntAggregateFunction.summarize
(BooleanColumn column) Returns an Integer as a result of applying this function to the given column -
Uses of BooleanColumn in tech.tablesaw.api
Methods in tech.tablesaw.api that return BooleanColumnModifier and TypeMethodDescriptionBooleanColumn.append
(boolean b) Appends b to the end of this column and returns this columnBooleanColumn.append
(byte b) Appends b to the end of this column and returns this columnAppends value to the bottom of this column and return this columnAppends all the values in the argument to the bottom of this column and return this columnBooleanColumn.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.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 parserBooleanColumn.appendMissing()
Appends a missing value appropriate to the columnAppends the given value to the bottom of this column and return this columnBooleanColumn.copy()
Returns a deep copy of the receiverstatic BooleanColumn
Returns a new, empty Boolean column with the given name.static BooleanColumn
Returns a new Boolean column with the given name and valuesstatic BooleanColumn
Returns a new Boolean column of the given size.static BooleanColumn
Returns a new Boolean column with the given name and valuesstatic BooleanColumn
BooleanColumn.create
(String name, Collection<Boolean> values) Returns a new Boolean column with the given name and valuesstatic BooleanColumn
Returns a new Boolean column with the given name and valuesstatic BooleanColumn
Returns a new Boolean column of the given size.BooleanColumn.emptyCopy()
Returns a copy of the receiver with no data.BooleanColumn.emptyCopy
(int rowSize) Returns an empty copy of the receiver, with its internal storage initialized to the given row size.BooleanColumn.fillWith
(it.unimi.dsi.fastutil.booleans.BooleanIterable iterable) BooleanColumn.fillWith
(it.unimi.dsi.fastutil.booleans.BooleanIterator iterator) BooleanColumn.lag
(int n) Returns a column of the same type and size as the receiver, containing the receivers values offset by n.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.removeMissing()
Returns a copy of this column with the missing values removedBooleanColumn.set
(int i, boolean b) Sets the value at i to b, and returns this columnSets the value at index row to the given value and return this columnBooleanColumn.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 columnConditionally update this column, replacing current values with newValue for all rows where the current value matches the selection criteriaConditionally update this column, replacing current values with newValue for all rows where the current value matches the selection criteria.BooleanColumn.setMissing
(int i) Sets the value at index i to the missing-value indicator for this column type, and return this columnBooleanColumn.unique()
Returns a column of the same type containing only the unique valuesReturns a new column containing the subset referenced by theSelection
Methods in tech.tablesaw.api that return types with arguments of type BooleanColumnModifier and TypeMethodDescriptionStringColumn.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)Methods in tech.tablesaw.api with parameters of type BooleanColumn -
Uses of BooleanColumn in tech.tablesaw.columns.booleans
Methods in tech.tablesaw.columns.booleans that return BooleanColumnModifier and TypeMethodDescriptiondefault 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.default BooleanColumn
BooleanMapUtils.or
(BooleanColumn... columns) Methods in tech.tablesaw.columns.booleans with parameters of type BooleanColumnModifier and TypeMethodDescriptiondefault 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.BooleanFilters.isEqualTo
(BooleanColumn other) default BooleanColumn
BooleanMapUtils.or
(BooleanColumn... columns) -
Uses of BooleanColumn in tech.tablesaw.columns.strings
Methods in tech.tablesaw.columns.strings that return types with arguments of type BooleanColumnModifier and TypeMethodDescriptionByteDictionaryMap.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)DictionaryMap.getDummies()
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)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) -
Uses of BooleanColumn in tech.tablesaw.columns.temporal
Methods in tech.tablesaw.columns.temporal that return BooleanColumn -
Uses of BooleanColumn in tech.tablesaw.filtering
Methods in tech.tablesaw.filtering with parameters of type BooleanColumnModifier and TypeMethodDescriptionBooleanFilterSpec.isEqualTo
(BooleanColumn other) DeferredBooleanColumn.isEqualTo
(BooleanColumn other) -
Uses of BooleanColumn in tech.tablesaw.index
Constructors in tech.tablesaw.index with parameters of type BooleanColumnModifierConstructorDescriptionByteIndex
(BooleanColumn column) Constructs an index for the given column -
Uses of BooleanColumn in tech.tablesaw.table
Methods in tech.tablesaw.table that return BooleanColumnModifier and TypeMethodDescriptionRelation.booleanColumn
(int columnIndex) Returns the DoubleColumn at the given 0-based index if present.Relation.booleanColumn
(String columnName) Returns a BooleanColumn with the given name if it is present in this Relation.Relation.booleanColumns()
Returns all BooleanColumns in this Relation as an Array