Uses of Class
tech.tablesaw.api.IntColumn
-
-
Uses of IntColumn in tech.tablesaw.api
Methods in tech.tablesaw.api that return IntColumn Modifier and Type Method Description IntColumn
IntColumn. append(int i)
IntColumn
IntColumn. append(Integer val)
Appends value to the bottom of this column and return this columnIntColumn
IntColumn. append(Column<Integer> column)
Appends all the values in the argument to the bottom of this column and return this columnIntColumn
IntColumn. append(Column<Integer> column, int row)
Appends the value at the given row in the given column to the bottom of this column and return this columnIntColumn
IntColumn. 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
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
IntColumn. appendMissing()
Appends a missing value appropriate to the columnIntColumn
IntColumn. appendObj(Object obj)
Appends the given value to the bottom of this column and return this columnIntColumn
DoubleColumn. asIntColumn()
Returns a new IntColumn containing a value for each value in this column, truncating if necessary.IntColumn
FloatColumn. asIntColumn()
Returns a new IntColumn containing a value for each value in this column, truncating if necessary.IntColumn
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 columnIntColumn
ShortColumn. asIntColumn()
Returns a new IntColumn containing a value for each value in this columnIntColumn
IntColumn. bottom(int n)
Returns the smallest ("bottom") n values in the column TODO(lwhite): Consider whether this should exclude missingIntColumn
IntColumn. copy()
Returns a deep copy of the receiverstatic IntColumn
IntColumn. create(String name)
static IntColumn
IntColumn. create(String name, int initialSize)
static IntColumn
IntColumn. create(String name, int... arr)
static IntColumn
IntColumn. create(String name, Integer[] arr)
static IntColumn
IntColumn. create(String name, IntStream stream)
IntColumn
IntColumn. createCol(String name)
IntColumn
IntColumn. createCol(String name, int initialSize)
static IntColumn
IntColumn. indexColumn(String columnName, int size, int startsWith)
Returns a new numeric column initialized with the given name and size.IntColumn
IntColumn. lag(int n)
Returns a column of the same type and size as the receiver, containing the receivers values offset by n.IntColumn
IntColumn. removeMissing()
Returns a copy of this column with the missing values removedIntColumn
IntColumn. set(int i, int val)
IntColumn
IntColumn. set(int i, Integer val)
Sets the value at index row to the given value and return this columnIntColumn
IntColumn. set(int row, Column<Integer> column, int sourceRow)
Sets the value at row to the value at sourceRow in the given column and return this columnIntColumn
IntColumn. setMissing(int r)
Sets the value at index i to the missing-value indicator for this column type, and return this columnIntColumn
IntColumn. subset(int[] rows)
Return a column of the same type containing just those elements whose indexes are included in the given arrayIntColumn
IntColumn. top(int n)
Returns the largest ("top") n values in the column TODO(lwhite): Consider whether this should exclude missingIntColumn
IntColumn. unique()
Returns a column of the same type containing only the unique valuesMethods in tech.tablesaw.api with parameters of type IntColumn Modifier and Type Method Description Selection
IntColumn. isNotIn(IntColumn ints)
-
Uses of IntColumn in tech.tablesaw.columns.dates
Methods in tech.tablesaw.columns.dates that return IntColumn Modifier and Type Method Description default 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 IntColumn Modifier and Type Method Description default 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 Modifier and Type Method Description IntColumn
IntColumnType. create(String name)
Returns a column of this type with the given name -
Uses of IntColumn in tech.tablesaw.columns.strings
Methods in tech.tablesaw.columns.strings that return IntColumn Modifier and Type Method Description default IntColumn
StringMapFunctions. parseInt()
Returns an IntColumn containing all the values of this string column as integers, assuming all the values are stringified ints in the first place. -
Uses of IntColumn in tech.tablesaw.columns.times
Methods in tech.tablesaw.columns.times that return IntColumn Modifier and Type Method Description default 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 Constructor Description IntIndex(IntColumn column)
Constructs an index for the given column -
Uses of IntColumn in tech.tablesaw.table
Methods in tech.tablesaw.table that return IntColumn Modifier and Type Method Description IntColumn
Relation. intColumn(int columnIndex)
Returns the IntColumn at the given 0-based index if present.IntColumn
Relation. intColumn(String columnName)
Returns an IntColumn with the given name if it is present in this Relation.
-