Uses of Class
tech.tablesaw.api.TimeColumn
Packages that use TimeColumn
Package
Description
-
Uses of TimeColumn in tech.tablesaw.aggregate
Methods in tech.tablesaw.aggregate with parameters of type TimeColumnModifier and TypeMethodDescriptionabstract LocalTime
TimeAggregateFunction.summarize
(TimeColumn column) Returns a LocalTime object that is the result of applying this function to the given Column -
Uses of TimeColumn in tech.tablesaw.api
Methods in tech.tablesaw.api that return TimeColumnModifier and TypeMethodDescriptionAppends 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 columnAppends the value at the given row in the given column to the bottom of this column and return this columnTimeColumn.appendCell
(String object) Add one element to the bottom of this column and set its value to the parsed value of the given String.TimeColumn.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 parserTimeColumn.appendInternal
(int f) TimeColumn.appendMissing()
Appends a missing value appropriate to the columnAppends the given value to the bottom of this column and return this columnTimeColumn.copy()
Returns a deep copy of the receiverstatic TimeColumn
static TimeColumn
static TimeColumn
static TimeColumn
TimeColumn.create
(String name, Collection<LocalTime> data) static TimeColumn
static TimeColumn
TimeColumn.create
(String name, AbstractColumnParser<LocalTime> parser) static TimeColumn
TimeColumn.createInternal
(String name, int[] data) TimeColumn.emptyCopy()
Returns a copy of the receiver with no data.TimeColumn.emptyCopy
(int rowSize) Returns an empty copy of the receiver, with its internal storage initialized to the given row size.TimeColumn.lag
(int n) Returns a column of the same type and size as the receiver, containing the receivers values offset by n.TimeColumn.removeMissing()
Returns a copy of this column with the missing values removedTimeColumn.set
(int index, int value) Sets the value at index row to the given value and return this columnSets the value at row to the value at sourceRow in the given column and return this columnConditionally update this column, replacing current values with newValue for all rows where the current value matches the selection criteriaTimeColumn.setMissing
(int i) Sets the value at index i to the missing-value indicator for this column type, and return this columnTimeColumn.subset
(int[] rows) Return a column of the same type containing just those elements whose indexes are included in the given arrayTimeColumn.unique()
Returns a column of the same type containing only the unique valuesReturns a new column containing the subset referenced by theSelection
-
Uses of TimeColumn in tech.tablesaw.columns.dates
Methods in tech.tablesaw.columns.dates with parameters of type TimeColumnModifier and TypeMethodDescriptiondefault DateTimeColumn
DateMapFunctions.atTime
(TimeColumn timeColumn) Returns a DateTime column where each value consists of the dates from this column combined with the corresponding times from the other column -
Uses of TimeColumn in tech.tablesaw.columns.datetimes
Methods in tech.tablesaw.columns.datetimes that return TimeColumnModifier and TypeMethodDescriptiondefault TimeColumn
DateTimeMapFunctions.time()
Returns a TimeColumn containing the time portion of each dateTime in this DateTimeColumn -
Uses of TimeColumn in tech.tablesaw.columns.times
Methods in tech.tablesaw.columns.times that return TimeColumnModifier and TypeMethodDescriptionTimeMapFunctions.lag
(int n) default TimeColumn
TimeMapFunctions.lead
(int n) default TimeColumn
TimeMapFunctions.minus
(int time, ChronoUnit unit) default TimeColumn
TimeMapFunctions.minusHours
(int hours) default TimeColumn
TimeMapFunctions.minusMilliseconds
(int millis) default TimeColumn
TimeMapFunctions.minusMinutes
(int minutes) default TimeColumn
TimeMapFunctions.minusSeconds
(int seconds) default TimeColumn
TimeMapFunctions.plus
(int time, ChronoUnit unit) default TimeColumn
TimeMapFunctions.plusHours
(int hours) default TimeColumn
TimeMapFunctions.plusMilliseconds
(int millis) default TimeColumn
TimeMapFunctions.plusMinutes
(int minutes) default TimeColumn
TimeMapFunctions.plusSeconds
(int seconds) default TimeColumn
TimeMapFunctions.truncatedTo
(ChronoUnit unit) default TimeColumn
TimeMapFunctions.with
(int time, ChronoUnit unit) default TimeColumn
TimeMapFunctions.withHour
(int hours) default TimeColumn
TimeMapFunctions.withMillisecond
(int millis) default TimeColumn
TimeMapFunctions.withMinute
(int minutes) default TimeColumn
TimeMapFunctions.withSecond
(int seconds) Methods in tech.tablesaw.columns.times with parameters of type TimeColumnModifier and TypeMethodDescriptiondefault IntColumn
TimeMapFunctions.difference
(TimeColumn column2, ChronoUnit unit) default IntColumn
TimeMapFunctions.differenceInHours
(TimeColumn column2) default IntColumn
TimeMapFunctions.differenceInMilliseconds
(TimeColumn column2) default IntColumn
TimeMapFunctions.differenceInMinutes
(TimeColumn column2) default IntColumn
TimeMapFunctions.differenceInSeconds
(TimeColumn column2) default Selection
TimeFilters.eval
(IntBiPredicate predicate, TimeColumn otherColumn) default Selection
TimeFilters.isAfter
(TimeColumn column) Returns a bitmap flagging the records for which the value in this column is after the value in the given column Columnwise isEqualTo.default Selection
TimeFilters.isBefore
(TimeColumn column) Returns a bitmap flagging the records for which the value in this column is before the value in the given column Columnwise isEqualTo.default Selection
TimeFilters.isEqualTo
(TimeColumn column) Returns a bitmap flagging the records for which the value in this column is equal to the value in the given column Columnwise isEqualTo.default Selection
TimeFilters.isNotEqualTo
(TimeColumn column) Returns a bitmap flagging the records for which the value in this column is NOT equal to the value in the given column Columnwise isEqualTo. -
Uses of TimeColumn in tech.tablesaw.filtering
Methods in tech.tablesaw.filtering with parameters of type TimeColumnModifier and TypeMethodDescriptionDeferredTimeColumn.isAfter
(TimeColumn column) TimeOnlyFilterSpec.isAfter
(TimeColumn column) DeferredTimeColumn.isBefore
(TimeColumn column) TimeOnlyFilterSpec.isBefore
(TimeColumn column) DeferredTimeColumn.isEqualTo
(TimeColumn column) TimeOnlyFilterSpec.isEqualTo
(TimeColumn column) DeferredTimeColumn.isNotEqualTo
(TimeColumn column) TimeOnlyFilterSpec.isNotEqualTo
(TimeColumn column) -
Uses of TimeColumn in tech.tablesaw.index
Constructors in tech.tablesaw.index with parameters of type TimeColumnModifierConstructorDescriptionIntIndex
(TimeColumn column) Constructs an index for the given column -
Uses of TimeColumn in tech.tablesaw.table
Methods in tech.tablesaw.table that return TimeColumnModifier and TypeMethodDescriptionRelation.timeColumn
(int columnIndex) Returns the TimeColumn at the given 0-based index if present.Relation.timeColumn
(String columnName) Returns a TimeColumn with the given name if it is present in this Relation.Relation.timeColumns()
Returns all TimeColumns in this Relation as an Array