org.pmml4s.data

Type members

Classlikes

class CombinedSeries(val rows: Array[Series]) extends Series
Companion:
object
Companion:
class
trait DSeries extends Series
Companion:
object
object DSeries
Companion:
class
object Datetime
class GenericDSeries(val values: Array[Double]) extends DSeries
class GenericMutableSeries(values: Array[Any]) extends MutableSeries
class GenericMutableSeriesWithSchema(values: Array[Any], val schema: StructType) extends GenericMutableSeries
class GenericSeries(val values: Array[Any]) extends Series

A series implementation that uses an array of objects as the underlying storage.

A series implementation that uses an array of objects as the underlying storage.

class GenericSeriesWithSchema(values: Array[Any], val schema: StructType) extends GenericSeries
class JoinedSeries(val series1: Series, val series2: Series) extends Series

A wrapper that makes two series appear as a single concatenated series.

A wrapper that makes two series appear as a single concatenated series.

trait MutableSeries extends Series with Clearable with Serializable

A basic trait allows the values for each column to be updated.

A basic trait allows the values for each column to be updated.

object NullSeries extends Series
object Series
Companion:
class
trait Series

Represents one series of output from a relational operator. Allows both generic access by ordinal, which will incur boxing overhead for primitives, as well as native primitive access.

Represents one series of output from a relational operator. Allows both generic access by ordinal, which will incur boxing overhead for primitives, as well as native primitive access.

It is invalid to use the native primitive interface to retrieve a value that is null, instead a user must check isNullAt before attempting to retrieve a value that might be null.

Companion:
object

Implicits

Implicits

implicit def javaMap2Series(map: Map[String, Any]): Series
implicit def map2Series(map: Map[String, Any]): Series