NamedDataset

data class NamedDataset(val name: String, val data: DoubleArray)(source)

One numeric series tagged with a human-readable label. The label typically carries source provenance (originating column header, id value, file stem, or inline key) so downstream reports and event traffic can identify the dataset without an external lookup.

Uses data-class identity (reference equality on data). Do not compare NamedDataset instances for content equality; compare data arrays directly when needed.

Constructors

Link copied to clipboard
constructor(name: String, data: DoubleArray)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val size: Int