Package tech.tablesaw.columns.booleans
Interface BooleanMapUtils
- All Known Implementing Classes:
BooleanColumn
An interface for mapping operations unique to Boolean columns
-
Method Summary
Modifier and TypeMethodDescriptiondefault BooleanColumn
and
(BooleanColumn... columns) default BooleanColumn
andNot
(BooleanColumn... columns) Returns a column made by combining the receiver and each of the arguments using the operation: A andNot V.default BooleanColumn
or
(BooleanColumn... columns) Methods inherited from interface tech.tablesaw.columns.Column
allMatch, anyMatch, append, append, append, appendCell, appendCell, appendMissing, appendObj, asBytes, asList, asObjectArray, asSet, asStringColumn, byteSize, clear, columnWidth, contains, copy, count, count, countMissing, countUnique, emptyCopy, emptyCopy, equals, filter, first, get, getString, getUnformattedString, indexOf, inRange, interpolate, isEmpty, isMissing, isMissing, isNotMissing, lag, last, lead, map, map, mapInto, max, max, min, min, name, noneMatch, parser, print, reduce, reduce, removeMissing, rolling, rowComparator, sampleN, sampleX, set, set, set, set, set, set, setMissing, setMissingTo, setName, setParser, size, sortAscending, sortDescending, sorted, subset, summary, title, type, unique, valueHash, where
Methods inherited from interface java.util.Comparator
compare, equals, reversed, thenComparing, thenComparing, thenComparing, thenComparingDouble, thenComparingInt, thenComparingLong
Methods inherited from interface java.lang.Iterable
forEach, iterator, spliterator
-
Method Details
-
and
-
or
-
andNot
Returns a column made by combining the receiver and each of the arguments using the operation: A andNot V. For example, the value of a cell in the result column would be true if the corresponding value in A is true and the corresponding value in B is false -
asSelection
Selection asSelection()
-