# Functions
Bools is a constructor for a Bool Series.
DefaultType sets the defaultType option for loadOptions.
DetectTypes sets the detectTypes option for loadOptions.
Floats is a constructor for a Float Series.
HasHeader sets the hasHeader option for loadOptions.
Ints is a constructor for an Int Series.
LoadMaps creates a new DataFrame based on the given maps.
LoadMatrix loads the given Matrix as a DataFrame TODO: Add Loadoptions.
LoadRecords creates a new DataFrame based on the given records.
LoadStructs creates a new DataFrame from arbitrary struct slices.
Mean calculates mean of input values.
Names sets the names option for loadOptions.
NaNValues sets the nanValues option for loadOptions.
NewDataframe is the generic DataFrame constructor.
NewSeries is the generic Series constructor.
Quantile computes the q-th quantiles of input values.
ReadCSV reads a CSV file from a io.Reader and builds a DataFrame with the resulting records.
No description provided by the author
ReadJSON reads a JSON array from a io.Reader and builds a DataFrame with the resulting records.
RevSort return an ordering structure for reverse column sorting.
Sort return an ordering structure for regular column sorting sort.
StdDev calculates standard deviation.
Strings is a constructor for a String Series.
WithComments sets the csv comment line detect to remove lines.
WithDelimiter sets the csv delimiter other than ',', for example '\t'.
WithTypes sets the types option for loadOptions.
WriteHeader sets the writeHeader option for writeOptions.
# Constants
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
And aggregates filters with logical and.
Supported Series Types.
user-defined comparison function.
Equal.
Supported Series Types.
Greater than.
Greater or equal than.
Inside.
Supported Series Types.
No description provided by the author
Lesser than.
Lesser or equal than.
Non equal.
Or aggregates filters with logical or.
Supported Series Types.
# Structs
DataFrame is a data structure designed for operating on table like data (Such as Excel, CSV files, SQL table results...) where every column have to keep type integrity.
F is the filtering structure.
Groups : structure generated by groupby.
Order is the ordering structure.
RollingWindow is used for rolling window calculations.
Series is a data structure designed for operating on arrays of elements that should comply with a certain type structure.
# Interfaces
Element is the interface that defines the types of methods to be present for elements of a Series.
Elements is the interface that represents the array of elements contained on a Series.
ElementValue represents the value that can be used for marshaling or unmarshaling Elements.
Indexes represent the elements that can be used for selecting a subset of elements within a Series.
Matrix is an interface which is compatible with gonum's mat.Matrix interface.
SelectIndexes are the supported indexes used for the DataFrame.Select method.
# Type aliases
Aggregation defines the filter aggregation.
AggregationType Aggregation method type.
Comparator is a convenience alias that can be used for a more type safe way of reason and use comparators.
LoadOption is the type used to configure the load of elements.
No description provided by the author
Type is a convenience alias that can be used for a more type safe way of reason and use Series types.
WriteOption is the type used to configure the writing of elements.