Uses of Class
tech.tablesaw.api.DateColumn
Packages that use DateColumn
Package
Description
-
Uses of DateColumn in tech.tablesaw.aggregate
Methods in tech.tablesaw.aggregate with parameters of type DateColumnModifier and TypeMethodDescriptionabstract LocalDate
DateAggregateFunction.summarize
(DateColumn column) Returns an instance of LocalDate that is the result of applying this function to the given column -
Uses of DateColumn in tech.tablesaw.api
Methods in tech.tablesaw.api that return DateColumnModifier 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 columnDateColumn.appendCell
(String string) Add one element to the bottom of this column and set its value to the parsed value of the given String.DateColumn.appendCell
(String string, 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 parserDateColumn.appendInternal
(int f) DateColumn.appendMissing()
Appends a missing value appropriate to the columnAppends the given value to the bottom of this column and return this columnDateColumn.copy()
Returns a deep copy of the receiverstatic DateColumn
Creates a new DateColumn with the given name.static DateColumn
Creates a new DateColumn with the given name.static DateColumn
Creates a new DateColumn with the given name and datastatic DateColumn
DateColumn.create
(String name, Collection<LocalDate> data) Creates a new DateColumn with the given name and datastatic DateColumn
Creates a new DateColumn with the given name and datastatic DateColumn
DateColumn.createInternal
(String name, int[] data) Creates a new DateColumn with the given name and integer-encoded data.DateColumn.emptyCopy()
Returns a copy of the receiver with no data.DateColumn.emptyCopy
(int rowSize) Returns an empty copy of the receiver, with its internal storage initialized to the given row size.DateColumn.lag
(int n) Returns a column of the same type and size as the receiver, containing the receivers values offset by n.DateColumn.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.DateColumn.removeMissing()
Returns a copy of this column with the missing values removedDateColumn.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 criteriaDateColumn.setMissing
(int i) Sets the value at index i to the missing-value indicator for this column type, and return this columnDateColumn.subset
(int[] rows) Return a column of the same type containing just those elements whose indexes are included in the given arrayDateColumn.unique()
Returns a column of the same type containing only the unique valuesReturns a new column containing the subset referenced by theSelection
-
Uses of DateColumn in tech.tablesaw.columns.dates
Methods in tech.tablesaw.columns.dates that return DateColumnModifier and TypeMethodDescriptiondefault DateColumn
DateMapFunctions.minus
(int value, ChronoUnit unit) default DateColumn
DateMapFunctions.minusDays
(int days) default DateColumn
DateMapFunctions.minusMonths
(int months) default DateColumn
DateMapFunctions.minusWeeks
(int weeks) default DateColumn
DateMapFunctions.minusYears
(int years) default DateColumn
DateMapFunctions.plus
(int value, ChronoUnit unit) default DateColumn
DateMapFunctions.plusDays
(int days) default DateColumn
DateMapFunctions.plusMonths
(int months) default DateColumn
DateMapFunctions.plusWeeks
(int weeks) default DateColumn
DateMapFunctions.plusYears
(int years) Methods in tech.tablesaw.columns.dates with parameters of type DateColumnModifier and TypeMethodDescriptiondefault IntColumn
DateMapFunctions.daysUntil
(DateColumn column2) default Selection
DateFilters.eval
(IntBiPredicate predicate, DateColumn otherColumn) default Selection
DateFilters.isAfter
(DateColumn column) default Selection
DateFilters.isBefore
(DateColumn column) default Selection
DateFilters.isEqualTo
(DateColumn column) Returns a bitmap flagging the records for which the value in this column is equal to the value in the given column Column-wise isEqualTo.default Selection
DateFilters.isNotEqualTo
(DateColumn column) default Selection
DateFilters.isOnOrAfter
(DateColumn column) default Selection
DateFilters.isOnOrBefore
(DateColumn column) default IntColumn
DateMapFunctions.monthsUntil
(DateColumn column2) default IntColumn
DateMapFunctions.timeUntil
(DateColumn end, ChronoUnit unit) Calculates the temporal difference between each element of the receiver and the respective element of the argumentdefault IntColumn
DateMapFunctions.weeksUntil
(DateColumn column2) default IntColumn
DateMapFunctions.yearsUntil
(DateColumn column2) -
Uses of DateColumn in tech.tablesaw.columns.datetimes
Methods in tech.tablesaw.columns.datetimes that return DateColumnModifier and TypeMethodDescriptiondefault DateColumn
DateTimeMapFunctions.date()
Returns a DateColumn containing the date portion of each dateTime in this DateTimeColumn -
Uses of DateColumn in tech.tablesaw.filtering
Methods in tech.tablesaw.filtering with parameters of type DateColumnModifier and TypeMethodDescriptionDateOnlyFilterSpec.isAfter
(DateColumn column) DeferredDateColumn.isAfter
(DateColumn column) DateOnlyFilterSpec.isBefore
(DateColumn column) DeferredDateColumn.isBefore
(DateColumn column) DateOnlyFilterSpec.isEqualTo
(DateColumn column) DeferredDateColumn.isEqualTo
(DateColumn column) DateOnlyFilterSpec.isNotEqualTo
(DateColumn column) DeferredDateColumn.isNotEqualTo
(DateColumn column) DateOnlyFilterSpec.isOnOrAfter
(DateColumn column) DeferredDateColumn.isOnOrAfter
(DateColumn column) DateOnlyFilterSpec.isOnOrBefore
(DateColumn column) DeferredDateColumn.isOnOrBefore
(DateColumn column) -
Uses of DateColumn in tech.tablesaw.index
Constructors in tech.tablesaw.index with parameters of type DateColumnModifierConstructorDescriptionIntIndex
(DateColumn column) Constructs an index for the given column -
Uses of DateColumn in tech.tablesaw.table
Methods in tech.tablesaw.table that return DateColumnModifier and TypeMethodDescriptionRelation.dateColumn
(int columnIndex) Returns the DateColumn at the given 0-based index if present.Relation.dateColumn
(String columnName) Returns a DateColumn with the given name if it is present in this Relation.Relation.dateColumns()
Returns all DateColumns in this Relation as an Array