ColumnarData

interface ColumnarData<out T>

A column-based data set with all columns of the same size (not necessary fixed in time). The column could be retrieved by a get operation.

Functions

Link copied to clipboard
abstract operator fun get(symbol: Symbol): Buffer<T>?

Provide a column by symbol or null if column with given symbol is not defined

Properties

Link copied to clipboard
abstract val size: Int

Inheritors

Link copied to clipboard

Extensions

Link copied to clipboard
fun <T> ColumnarData<T>.asXYData(xSymbol: Symbol, ySymbol: Symbol): XYColumnarData<T, T, T>

Represent a ColumnarData as an XYColumnarData. The presence or respective columns is checked on creation.

Link copied to clipboard
val ColumnarData<*>.indices: IntRange

Sources

Link copied to clipboard