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 column
|
IntColumn |
IntColumn.append(Column<Integer> column) |
Appends all the values in the argument to the bottom of this column and return this column
|
IntColumn |
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 column
|
IntColumn |
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 parser
|
IntColumn |
IntColumn.appendMissing() |
Appends a missing value appropriate to the column
|
IntColumn |
IntColumn.appendObj(Object obj) |
Appends the given value to the bottom of this column and return this column
|
IntColumn |
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 column
|
default IntColumn |
NumericColumn.asIntColumn() |
Returns a new IntColumn containing a value for each value in this column
|
IntColumn |
ShortColumn.asIntColumn() |
|
IntColumn |
IntColumn.bottom(int n) |
Returns the smallest ("bottom") n values in the column TODO(lwhite): Consider whether this
should exclude missing
|
IntColumn |
IntColumn.copy() |
Returns a deep copy of the receiver
|
static 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 removed
|
IntColumn |
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 column
|
IntColumn |
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 column
|
IntColumn |
IntColumn.setMissing(int r) |
Sets the value at index i to the missing-value indicator for this column type, and return this
column
|
IntColumn |
IntColumn.subset(int[] rows) |
Return a column of the same type containing just those elements whose indexes are included in
the given array
|
IntColumn |
IntColumn.top(int n) |
Returns the largest ("top") n values in the column TODO(lwhite): Consider whether this should
exclude missing
|
IntColumn |
IntColumn.unique() |
Returns a column of the same type containing only the unique values
|
Modifier and Type | Method | Description |
---|---|---|
Selection |
IntColumn.isNotIn(IntColumn ints) |
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 argument
|
default 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) |
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() |
Modifier and Type | Method | Description |
---|---|---|
IntColumn |
IntColumnType.create(String name) |
Returns a column of this type with the given name
|
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.
|
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() |
Constructor | Description |
---|---|
IntIndex(IntColumn column) |
Constructs an index for the given column
|
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.
|
Copyright © 2021. All rights reserved.