Class FloatVector
java.lang.Object
smile.data.vector.AbstractVector
smile.data.vector.PrimitiveVector
smile.data.vector.FloatVector
- All Implemented Interfaces:
Serializable, ValueVector
-
Constructor Summary
ConstructorsConstructorDescriptionFloatVector(String name, float[] vector) Constructor.FloatVector(StructField field, float[] vector) Constructor. -
Method Summary
Modifier and TypeMethodDescriptionReturns a DoubleStream consisting of the elements of this vector, converted to double.voidfillna(float value) Fills NaN/Inf values with the specified value.get(int i) Returns the value at position i, which may be null.Returns a new vector with selected entries.booleangetBoolean(int i) Returns the boolean value at position i.bytegetByte(int i) Returns the byte value at position i.chargetChar(int i) Returns the character value at position i.doublegetDouble(int i) Returns the double value at position i.floatgetFloat(int i) Returns the float value at position i.intgetInt(int i) Returns the integer value at position i.longgetLong(int i) Returns the long value at position i.shortgetShort(int i) Returns the short value at position i.booleanisNullAt(int i) Returns true if the value at the given index is null/missing.voidSets the value at position i.intsize()Returns the number of elements in the vector.Returns the vector with the new name.Methods inherited from class PrimitiveVector
getNullCount, isNullable, max, mean, median, min, q1, q3, stdevMethods inherited from class AbstractVector
field, toStringMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface ValueVector
anyNull, apply, apply, dtype, eq, ge, get, getScale, getString, gt, intStream, isin, isNull, le, longStream, lt, measure, name, ne, slice, slice, stream, toDoubleArray, toIntArray, toLongArray, toStringArray, toStringArray, update
-
Constructor Details
-
FloatVector
Constructor.- Parameters:
name- the name of vector.vector- the elements of vector.
-
FloatVector
Constructor.- Parameters:
field- the struct field of vector.vector- the elements of vector.
-
-
Method Details
-
fillna
public void fillna(float value) Fills NaN/Inf values with the specified value.- Parameters:
value- the value to replace NAs.
-
size
public int size()Description copied from interface:ValueVectorReturns the number of elements in the vector.- Returns:
- the number of elements in the vector.
-
withName
Description copied from interface:ValueVectorReturns the vector with the new name.- Parameters:
name- the new name.- Returns:
- the vector with the new name.
-
doubleStream
Description copied from interface:ValueVectorReturns a DoubleStream consisting of the elements of this vector, converted to double.- Returns:
- a DoubleStream consisting of the elements of this vector.
-
set
Description copied from interface:ValueVectorSets the value at position i.- Parameters:
i- the index.value- the new value.
-
get
Description copied from interface:ValueVectorReturns a new vector with selected entries.- Parameters:
index- the index of selected entries.- Returns:
- the new vector of selected entries.
-
isNullAt
public boolean isNullAt(int i) Description copied from interface:ValueVectorReturns true if the value at the given index is null/missing.- Specified by:
isNullAtin interfaceValueVector- Overrides:
isNullAtin classPrimitiveVector- Parameters:
i- the index.- Returns:
- true if the value at the given index is null/missing.
-
get
Description copied from interface:ValueVectorReturns the value at position i, which may be null.- Parameters:
i- the index.- Returns:
- the value.
-
getFloat
public float getFloat(int i) Description copied from interface:ValueVectorReturns the float value at position i.- Parameters:
i- the index.- Returns:
- the value.
-
getBoolean
public boolean getBoolean(int i) Description copied from interface:ValueVectorReturns the boolean value at position i.- Parameters:
i- the index.- Returns:
- the value.
-
getChar
public char getChar(int i) Description copied from interface:ValueVectorReturns the character value at position i.- Parameters:
i- the index.- Returns:
- the value.
-
getByte
public byte getByte(int i) Description copied from interface:ValueVectorReturns the byte value at position i.- Parameters:
i- the index.- Returns:
- the value.
-
getShort
public short getShort(int i) Description copied from interface:ValueVectorReturns the short value at position i.- Parameters:
i- the index.- Returns:
- the value.
-
getInt
public int getInt(int i) Description copied from interface:ValueVectorReturns the integer value at position i.- Parameters:
i- the index.- Returns:
- the value.
-
getLong
public long getLong(int i) Description copied from interface:ValueVectorReturns the long value at position i.- Parameters:
i- the index.- Returns:
- the value.
-
getDouble
public double getDouble(int i) Description copied from interface:ValueVectorReturns the double value at position i.- Parameters:
i- the index.- Returns:
- the value.
-