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