SeriesBuilder
Value members
Concrete methods
Creates a Series from values. Undefined values are symbolized by null.
Creates a Series from values. Undefined values are symbolized by null.
- Value Params
- values
Values of the Series.
- Returns
Created Series.
- See also
- Since
0.1.0
- Note
- The Series is
nullsafe, i.e.nullvalues are not stored but represented internally by a mask. - The type of, e.g.,
Series(1, null, 3)is of type Series[Int] and is implemented as a primitive type. - Automatic type casting in the argument list works only without
nullvalues, i.e. Series(1, 1.1) and Series(1, null, 1.1) is of type Series[Double] whereas Series(1, null ,1.1) is of type Series[Any].
- The Series is
Creates an Series of length length with the given value.
Creates an Series of length length with the given value.
- Value Params
- length
Length of the Series.
- value
Value for all elements.
- Returns
New Series.
- Since
0.1.0
Creates a Series from a collection of data.
Creates a Series from a collection of data.
- Value Params
- data
Collection.
- Returns
Created Series.
- Since
0.1.0
Creates a Series from a collection of data.
Creates a Series from a collection of data.
- Value Params
- data
Collection.
- Returns
Created Series.
- Since
0.1.0
Creates a Series from a collection of data.
Creates a Series from a collection of data.
- Value Params
- data
Collection.
- Returns
Created Series.
- Since
0.1.0
Creates a Series from a collection of Option data, where the Option is unpacked.
Creates a Series from a collection of Option data, where the Option is unpacked.
- Value Params
- data
Collection of type
Option[T].
- Returns
Created Series of type
T.- Since
0.1.0
Creates a Series from a collection of Option data, where the Option is unpacked.
Creates a Series from a collection of Option data, where the Option is unpacked.
- Value Params
- data
Collection of type
Option[T].
- Returns
Created Series of type
T.- Since
0.1.0
Creates a mutable Series (see MutableSeriesBuilder).
Creates a mutable Series (see MutableSeriesBuilder).
- Returns
- See also
- Since
0.1.0
Creates a mutable Series from values. Undefined values are symbolized by null.
Creates a mutable Series from values. Undefined values are symbolized by null.
- Value Params
- values
Values of the Series.
- Returns
Created MutableSeries.
- See also
- Since
0.1.0
- Note
- The Series is
nullsafe, i.e.nullvalues are not stored but represented internally by a mask. - The type of, e.g.,
Series(1, null, 3)is of type Series[Int] and is implemented as a primitive type. - Automatic type casting in the argument list works only without
nullvalues, i.e. Series(1, 1.1) and Series(1, null, 1.1) is of type Series[Double] whereas Series(1, null ,1.1) is of type Series[Any].
- The Series is