- See also
- Since
0.1.0
- Companion
- class
Type members
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 a Series with a name, where a second parameter takes the values (see SeriesBuilder.apply).
Creates a Series with a name, where a second parameter takes the values (see SeriesBuilder.apply).
- Value Params
- name
Name of the Series.
- Returns
SeriesBuilder which takes the values.
- See also
- Since
0.1.0
Creates an empty Series of type T.
Creates an empty Series of type T.
- Returns
Empty Series.
- Since
0.1.0
Creates an empty Series of type T.
Creates an empty Series of type T.
- Value Params
- length
Length of the Series.
- Returns
Empty Series.
- Since
0.1.0
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
Appends row-wise one or multiple series to the first one. The method materializes all indices into a uniform index.
Appends row-wise one or multiple series to the first one. The method materializes all indices into a uniform index.
- Value Params
- series
Series to be appended.
- Returns
Series with a uniform index.
- Throws
- IllegalOperation
If no series is passed.
- SeriesCastException
If the underlying types are not a subtype.
- Since
0.1.0