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 IntColumnIntColumn. append(int i)IntColumnIntColumn. append(Integer val)Appends value to the bottom of this column and return this columnIntColumnIntColumn. append(Column<Integer> column)Appends all the values in the argument to the bottom of this column and return this columnIntColumnIntColumn. 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 columnIntColumnIntColumn. appendCell(String value)Add one element to the bottom of this column and set its value to the parsed value of the given String.IntColumnIntColumn. 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 parserIntColumnIntColumn. appendMissing()Appends a missing value appropriate to the columnIntColumnIntColumn. appendObj(Object obj)Appends the given value to the bottom of this column and return this columnIntColumnDoubleColumn. asIntColumn()Returns a new IntColumn containing a value for each value in this column, truncating if necessary.IntColumnFloatColumn. asIntColumn()Returns a new IntColumn containing a value for each value in this column, truncating if necessary.IntColumnLongColumn. asIntColumn()Returns a new IntColumn containing a value for each value in this columndefault IntColumnNumericColumn. asIntColumn()Returns a new IntColumn containing a value for each value in this columnIntColumnShortColumn. asIntColumn()Returns a new IntColumn containing a value for each value in this columnIntColumnIntColumn. bottom(int n)Returns the smallest ("bottom") n values in the column TODO(lwhite): Consider whether this should exclude missingIntColumnIntColumn. copy()Returns a deep copy of the receiverstatic IntColumnIntColumn. create(String name)static IntColumnIntColumn. create(String name, int initialSize)static IntColumnIntColumn. create(String name, int... arr)static IntColumnIntColumn. create(String name, Integer[] arr)static IntColumnIntColumn. create(String name, IntStream stream)IntColumnIntColumn. createCol(String name)IntColumnIntColumn. createCol(String name, int initialSize)static IntColumnIntColumn. indexColumn(String columnName, int size, int startsWith)Returns a new numeric column initialized with the given name and size.IntColumnIntColumn. lag(int n)Returns a column of the same type and size as the receiver, containing the receivers values offset by n.IntColumnIntColumn. removeMissing()Returns a copy of this column with the missing values removedIntColumnIntColumn. set(int i, int val)IntColumnIntColumn. set(int i, Integer val)Sets the value at index row to the given value and return this columnIntColumnIntColumn. 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 columnIntColumnIntColumn. setMissing(int r)Sets the value at index i to the missing-value indicator for this column type, and return this columnIntColumnIntColumn. subset(int[] rows)Return a column of the same type containing just those elements whose indexes are included in the given arrayIntColumnIntColumn. top(int n)Returns the largest ("top") n values in the column TODO(lwhite): Consider whether this should exclude missingIntColumnIntColumn. 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 SelectionIntColumn. 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 IntColumnDateMapFunctions. dayOfMonth()default IntColumnDateMapFunctions. dayOfWeekValue()default IntColumnDateMapFunctions. dayOfYear()default IntColumnDateMapFunctions. daysUntil(DateColumn column2)default IntColumnDateMapFunctions. monthsUntil(DateColumn column2)default IntColumnDateMapFunctions. monthValue()default IntColumnDateMapFunctions. timeUntil(DateColumn end, ChronoUnit unit)Calculates the temporal difference between each element of the receiver and the respective element of the argumentdefault IntColumnDateMapFunctions. timeWindow(ChronoUnit unit, int n)default IntColumnDateMapFunctions. timeWindow(ChronoUnit unit, int n, LocalDate start)Returns a column containing integers representing the nth group (0-based) that a date falls into.default IntColumnDateMapFunctions. weeksUntil(DateColumn column2)default IntColumnDateMapFunctions. year()default IntColumnDateMapFunctions. 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 IntColumnDateTimeMapFunctions. dayOfMonth()default IntColumnDateTimeMapFunctions. dayOfWeekValue()default IntColumnDateTimeMapFunctions. dayOfYear()default IntColumnDateTimeMapFunctions. hour()default IntColumnDateTimeMapFunctions. minute()default IntColumnDateTimeMapFunctions. minuteOfDay()default IntColumnDateTimeMapFunctions. monthValue()default IntColumnDateTimeMapFunctions. secondOfDay()default IntColumnDateTimeMapFunctions. year() -
Uses of IntColumn in tech.tablesaw.columns.numbers
Methods in tech.tablesaw.columns.numbers that return IntColumn Modifier and Type Method Description IntColumnIntColumnType. 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 IntColumnStringMapFunctions. 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 IntColumnTimeMapFunctions. difference(TimeColumn column2, ChronoUnit unit)default IntColumnTimeMapFunctions. differenceInHours(TimeColumn column2)default IntColumnTimeMapFunctions. differenceInMilliseconds(TimeColumn column2)default IntColumnTimeMapFunctions. differenceInMinutes(TimeColumn column2)default IntColumnTimeMapFunctions. differenceInSeconds(TimeColumn column2)default IntColumnTimeMapFunctions. hour()default IntColumnTimeMapFunctions. milliseconds()default IntColumnTimeMapFunctions. minute()default IntColumnTimeMapFunctions. minuteOfDay()default IntColumnTimeMapFunctions. second()default IntColumnTimeMapFunctions. 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 IntColumnRelation. intColumn(int columnIndex)Returns the IntColumn at the given 0-based index if present.IntColumnRelation. intColumn(String columnName)Returns an IntColumn with the given name if it is present in this Relation.
-