dataframe v0.3.0 DataFrame.Table
Table contains functions which act upon a 2D structure with data: a list of lists. Internally this is implemented as a list of rows. Given a table: 1 2 3 4 5 6 Internally we are working with [[1,2], [3,4], [5,6]] dimensions would be: x_dimension = 2 y_dimension = 3
Summary
Types
table :: [[any], ...]
A table is a list of lists, it can contain numbers strings atoms or be empty
Functions
Specs
build(non_neg_integer, non_neg_integer, function) :: table
Specs
build_random(non_neg_integer, non_neg_integer) :: [[number]]
Specs
with_index(table) :: [{[{any, non_neg_integer}, ...], non_neg_integer}, ...]