dataframe v0.3.0 API Reference
Modules
Functions to create and modify a Frame, a structure with a 2D table with information, indexes and columns
Ranges. This is useful to create columns and indexes. It allows numbers and strings. In the future will have more types
Functions to manage Date ranges
Struct which defines a Frame, a 2D table with columns and rows information The fields are:
values
- The values of the 2D tableindex
- The information of the rowscolumns
- The name of each column of the table
Functions with statistics processing of Frames
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