ShortColumn |
ShortColumn.append(short i) |
|
ShortColumn |
ShortColumn.append(Short val) |
Appends value to the bottom of this column and return this column
|
ShortColumn |
ShortColumn.append(Column<Short> column) |
Appends all the values in the argument to the bottom of this column and return this column
|
ShortColumn |
ShortColumn.append(Column<Short> column,
int row) |
Appends the value at the given row in the given column to the bottom of this column and return
this column
|
ShortColumn |
ShortColumn.appendCell(String value) |
Add one element to the bottom of this column and set its value to the parsed value of the given
String.
|
ShortColumn |
ShortColumn.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
|
ShortColumn |
ShortColumn.appendMissing() |
Appends a missing value appropriate to the column
|
ShortColumn |
ShortColumn.appendObj(Object obj) |
Appends the given value to the bottom of this column and return this column
|
ShortColumn |
DoubleColumn.asShortColumn() |
Returns a new ShortColumn containing a value for each value in this column, truncating if
necessary.
|
ShortColumn |
FloatColumn.asShortColumn() |
Returns a new IntColumn containing a value for each value in this column, truncating if
necessary.
|
ShortColumn |
IntColumn.asShortColumn() |
Returns a new ShortColumn containing a value for each value in this column
|
ShortColumn |
LongColumn.asShortColumn() |
Returns a new ShortColumn containing a value for each value in this column
|
default ShortColumn |
NumericColumn.asShortColumn() |
Returns a new ShortColumn containing a value for each value in this column
|
ShortColumn |
ShortColumn.bottom(int n) |
Returns the smallest ("bottom") n values in the column TODO(lwhite): Consider whether this
should exclude missing
|
ShortColumn |
ShortColumn.copy() |
Returns a deep copy of the receiver
|
static ShortColumn |
ShortColumn.create(String name) |
|
static ShortColumn |
ShortColumn.create(String name,
int initialSize) |
|
static ShortColumn |
ShortColumn.create(String name,
short... arr) |
|
static ShortColumn |
ShortColumn.create(String name,
Short[] arr) |
|
static ShortColumn |
ShortColumn.create(String name,
Stream<Short> stream) |
|
ShortColumn |
ShortColumn.createCol(String name) |
ShortColumn |
ShortColumn.createCol(String name,
int initialSize) |
ShortColumn |
ShortColumn.emptyCopy() |
Returns a copy of the receiver with no data.
|
ShortColumn |
ShortColumn.emptyCopy(int rowSize) |
Returns an empty copy of the receiver, with its internal storage initialized to the given row
size.
|
ShortColumn |
ShortColumn.lag(int n) |
Returns a column of the same type and size as the receiver, containing the receivers values
offset by n.
|
ShortColumn |
ShortColumn.removeMissing() |
Returns a copy of this column with the missing values removed
|
ShortColumn |
ShortColumn.set(int i,
short val) |
|
ShortColumn |
ShortColumn.set(int i,
Short val) |
Sets the value at index row to the given value and return this column
|
ShortColumn |
ShortColumn.set(int row,
Column<Short> column,
int sourceRow) |
Sets the value at row to the value at sourceRow in the given column and return this column
|
ShortColumn |
ShortColumn.setMissing(int i) |
Sets the value at index i to the missing-value indicator for this column type, and return this
column
|
ShortColumn |
ShortColumn.subset(int[] rows) |
Return a column of the same type containing just those elements whose indexes are included in
the given array
|
ShortColumn |
ShortColumn.top(int n) |
Returns the largest ("top") n values in the column TODO(lwhite): Consider whether this should
exclude missing
|
ShortColumn |
ShortColumn.unique() |
Returns a column of the same type containing only the unique values
|