Package smile.data.vector
Interface FloatVector
- All Superinterfaces:
BaseVector<Float,
,Double, DoubleStream> Serializable
An immutable float vector.
-
Method Summary
Modifier and TypeMethodDescriptionfloat[]
array()
Returns the array that backs this vector.void
fillna
(float value) Fills NaN/Inf values using the specified value.get
(int... index) Returns a new vector with selected entries.default boolean
getBoolean
(int i) Returns the boolean value at position i.default byte
getByte
(int i) Returns the byte value at position i.default char
getChar
(int i) Returns the character value at position i.default double
getDouble
(int i) Returns the double value at position i.default int
getInt
(int i) Returns the integer value at position i.default long
getLong
(int i) Returns the long value at position i.default short
getShort
(int i) Returns the short value at position i.static FloatVector
Creates a named float vector.static FloatVector
of
(StructField field, float[] vector) Creates a named float vector.default String
toString
(int n) Returns the string representation of vector.default DataType
type()
Returns the data type of elements.Methods inherited from interface smile.data.vector.BaseVector
apply, apply, field, get, getFloat, measure, name, size, stream, toDoubleArray, toDoubleArray, toIntArray, toIntArray, toStringArray, toStringArray
-
Method Details
-
type
Description copied from interface:BaseVector
Returns the data type of elements.- Specified by:
type
in interfaceBaseVector<Float,
Double, DoubleStream> - Returns:
- the data type of elements.
-
array
float[] array()Description copied from interface:BaseVector
Returns the array that backs this vector. This is mostly for smile internal use for high performance. The application developers should not use this method.- Specified by:
array
in interfaceBaseVector<Float,
Double, DoubleStream> - Returns:
- the array that backs this vector.
-
get
Description copied from interface:BaseVector
Returns a new vector with selected entries.- Specified by:
get
in interfaceBaseVector<Float,
Double, DoubleStream> - Parameters:
index
- the index of selected entries.- Returns:
- the new vector of selected entries.
-
getBoolean
default boolean getBoolean(int i) Description copied from interface:BaseVector
Returns the boolean value at position i.- Specified by:
getBoolean
in interfaceBaseVector<Float,
Double, DoubleStream> - Parameters:
i
- the index.- Returns:
- the value.
-
getChar
default char getChar(int i) Description copied from interface:BaseVector
Returns the character value at position i.- Specified by:
getChar
in interfaceBaseVector<Float,
Double, DoubleStream> - Parameters:
i
- the index.- Returns:
- the value.
-
getByte
default byte getByte(int i) Description copied from interface:BaseVector
Returns the byte value at position i.- Specified by:
getByte
in interfaceBaseVector<Float,
Double, DoubleStream> - Parameters:
i
- the index.- Returns:
- the value.
-
getShort
default short getShort(int i) Description copied from interface:BaseVector
Returns the short value at position i.- Specified by:
getShort
in interfaceBaseVector<Float,
Double, DoubleStream> - Parameters:
i
- the index.- Returns:
- the value.
-
getInt
default int getInt(int i) Description copied from interface:BaseVector
Returns the integer value at position i.- Specified by:
getInt
in interfaceBaseVector<Float,
Double, DoubleStream> - Parameters:
i
- the index.- Returns:
- the value.
-
getLong
default long getLong(int i) Description copied from interface:BaseVector
Returns the long value at position i.- Specified by:
getLong
in interfaceBaseVector<Float,
Double, DoubleStream> - Parameters:
i
- the index.- Returns:
- the value.
-
getDouble
default double getDouble(int i) Description copied from interface:BaseVector
Returns the double value at position i.- Specified by:
getDouble
in interfaceBaseVector<Float,
Double, DoubleStream> - Parameters:
i
- the index.- Returns:
- the value.
-
toString
Returns the string representation of vector.- Parameters:
n
- the number of elements to show.- Returns:
- the string representation of vector.
-
fillna
void fillna(float value) Fills NaN/Inf values using the specified value.- Parameters:
value
- the value to replace NAs.
-
of
Creates a named float vector.- Parameters:
name
- the name of vector.vector
- the data of vector.- Returns:
- the vector.
-
of
Creates a named float vector.- Parameters:
field
- the struct field of vector.vector
- the data of vector.- Returns:
- the vector.
-