Uses of Class
tech.tablesaw.api.IntColumn
Packages that use IntColumn
Package
Description
-
Uses of IntColumn in tech.tablesaw.api
Methods in tech.tablesaw.api that return IntColumnModifier and TypeMethodDescriptionIntColumn.append
(int i) Appends 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 columnIntColumn.appendCell
(String value) Add one element to the bottom of this column and set its value to the parsed value of the given String.IntColumn.appendCell
(String value, 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 parserIntColumn.appendMissing()
Appends a missing value appropriate to the columnAppends the given value to the bottom of this column and return this columnDoubleColumn.asIntColumn()
Returns a new IntColumn containing a value for each value in this column, truncating if necessary.FloatColumn.asIntColumn()
Returns a new IntColumn containing a value for each value in this column, truncating if necessary.LongColumn.asIntColumn()
Returns a new IntColumn containing a value for each value in this columndefault IntColumn
NumericColumn.asIntColumn()
Returns a new IntColumn containing a value for each value in this columnShortColumn.asIntColumn()
Returns a new IntColumn containing a value for each value in this columnIntColumn.bottom
(int n) Returns the smallest ("bottom") n values in the column TODO(lwhite): Consider whether this should exclude missingIntColumn.copy()
Returns a deep copy of the receiverstatic IntColumn
static IntColumn
static IntColumn
static IntColumn
static IntColumn
static IntColumn
IntColumn.indexColumn
(String columnName, int size, int startsWith) Returns a new numeric column initialized with the given name and size.IntColumn.lag
(int n) Returns a column of the same type and size as the receiver, containing the receivers values offset by n.IntColumn.removeMissing()
Returns a copy of this column with the missing values removedIntColumn.set
(int i, int val) 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 columnIntColumn.setMissing
(int r) Sets the value at index i to the missing-value indicator for this column type, and return this columnIntColumn.subset
(int[] rows) Return a column of the same type containing just those elements whose indexes are included in the given arrayIntColumn.top
(int n) Returns the largest ("top") n values in the column TODO(lwhite): Consider whether this should exclude missingIntColumn.unique()
Returns a column of the same type containing only the unique valuesMethods in tech.tablesaw.api with parameters of type IntColumn -
Uses of IntColumn in tech.tablesaw.columns.dates
Methods in tech.tablesaw.columns.dates that return IntColumnModifier and TypeMethodDescriptiondefault IntColumn
DateMapFunctions.dayOfMonth()
default IntColumn
DateMapFunctions.dayOfWeekValue()
default IntColumn
DateMapFunctions.dayOfYear()
default IntColumn
DateMapFunctions.daysUntil
(DateColumn column2) default IntColumn
DateMapFunctions.monthsUntil
(DateColumn column2) default IntColumn
DateMapFunctions.monthValue()
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.timeWindow
(ChronoUnit unit, int n) default IntColumn
DateMapFunctions.timeWindow
(ChronoUnit unit, int n, LocalDate start) Returns a column containing integers representing the nth group (0-based) that a date falls into.default IntColumn
DateMapFunctions.weeksUntil
(DateColumn column2) default IntColumn
DateMapFunctions.year()
default IntColumn
DateMapFunctions.yearsUntil
(DateColumn column2) -
Uses of IntColumn in tech.tablesaw.columns.datetimes
Methods in tech.tablesaw.columns.datetimes that return IntColumnModifier and TypeMethodDescriptiondefault IntColumn
DateTimeMapFunctions.dayOfMonth()
default IntColumn
DateTimeMapFunctions.dayOfWeekValue()
default IntColumn
DateTimeMapFunctions.dayOfYear()
default IntColumn
DateTimeMapFunctions.hour()
default IntColumn
DateTimeMapFunctions.minute()
default IntColumn
DateTimeMapFunctions.minuteOfDay()
default IntColumn
DateTimeMapFunctions.monthValue()
default IntColumn
DateTimeMapFunctions.secondOfDay()
default IntColumn
DateTimeMapFunctions.year()
-
Uses of IntColumn in tech.tablesaw.columns.numbers
Methods in tech.tablesaw.columns.numbers that return IntColumn -
Uses of IntColumn in tech.tablesaw.columns.strings
Methods in tech.tablesaw.columns.strings that return IntColumn -
Uses of IntColumn in tech.tablesaw.columns.times
Methods in tech.tablesaw.columns.times that return IntColumnModifier 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 IntColumn
TimeMapFunctions.hour()
default IntColumn
TimeMapFunctions.milliseconds()
default IntColumn
TimeMapFunctions.minute()
default IntColumn
TimeMapFunctions.minuteOfDay()
default IntColumn
TimeMapFunctions.second()
default IntColumn
TimeMapFunctions.secondOfDay()
-
Uses of IntColumn in tech.tablesaw.index
Constructors in tech.tablesaw.index with parameters of type IntColumn -
Uses of IntColumn in tech.tablesaw.table
Methods in tech.tablesaw.table that return IntColumn