dataframe v0.3.1 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
A table is a list of lists, it can contain numbers strings atoms or be empty