Rx.Table (rx v0.1.0)

Copy Markdown View Source

Decoded R table value.

counts stores the flat R count array in R's column-major order. dim stores the table dimensions, and dimnames stores one {name, levels} tuple per dimension. Dimension names with no R name are represented as nil.

Summary

Types

dimension_name()

@type dimension_name() :: String.t() | nil

t()

@type t() :: %Rx.Table{
  counts: [integer()],
  dim: [pos_integer()],
  dimnames: [{dimension_name(), [String.t()]}]
}