# Functions
Bools returns a BoolColumn identified by name.
Floats returns a FloatColumn identified by name.
FromCSV returns a decoder to decode comma separated values (CSV) files and turn it into a DataFrame.
Ints returns a IntColumn identified by name.
Strings returns a StringColumn identified by name.
# Interfaces
Aggregation defines how to aggregate rows of a group of rows in a Groups instance.
BoolColumn is the typed column of type Bool.
Column is a single column in a DataFrame instance.
DataFrame is an immutable data frame that support filtering, aggregation and data manipulation.
Filter defines how to filter columns out of a DataFrame instance.
FloatColumn is the typed column of type Float.
Groups contains groups of rows produced by DataFrame.GroupBy function.
IntColumn is the typed column of type Int.
NumericAggregations defines the possible aggregations which can be applied on columns of type Float and Int.
StringColumn is the typed column of type String.
# Type aliases
Aggregations is the slice of Aggregation instances.
Columns is the slice of Column instances.
DataFrames is the slice of DataFrame instances.
DataType defines the types of colums available in DataFrame.
Filters is the slice of Filter instances.