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

get
Link copied to clipboard
common
abstract operator fun get(symbol: Symbol): Buffer<T>?
Provide a column by symbol or null if column with given symbol is not defined

Properties

size
Link copied to clipboard
common
abstract val size: Int

Inheritors

XYColumnarData
Link copied to clipboard

Extensions

asXYData
Link copied to clipboard
common
fun <T> ColumnarData<T>.asXYData(xSymbol: Symbol, ySymbol: Symbol): XYColumnarData<T, T, T>
Represent a ColumnarData as an XYColumnarData.
indices
Link copied to clipboard
common
val ColumnarData<*>.indices: IntRange

Sources

common source
Link copied to clipboard