Versions in this module Expand all Collapse all v0 v0.0.2 Jun 24, 2025 v0.0.1 Jun 21, 2025 Changes in this version + func LoadFromCSV(ctx context.Context, r io.ReadSeeker, options ...CSVLoadOptions) (*dataframe.DataFrame, error) + func LoadFromJSON(ctx context.Context, r io.ReadSeeker, options ...JSONLoadOptions) (*dataframe.DataFrame, error) + func LoadFromParquet(ctx context.Context, src source.ParquetFile, opts ...ParquetLoadOptions) (*dataframe.DataFrame, error) + func LoadFromSQL(ctx context.Context, stmt interface{}, options *SQLLoadOptions, ...) (*dataframe.DataFrame, error) + type CSVLoadOptions struct + Comma rune + Comment rune + DictateDataType map[string]interface{} + Headers []string + InferDataTypes bool + LargeDataSet bool + NilValue *string + TrimLeadingSpace bool + type Converter struct + ConcreteType interface{} + ConverterFunc GenericDataConverter + type Database int + const MySQL + const PostgreSQL + type GenericDataConverter func(in interface{}) (interface{}, error) + type JSONLoadOptions struct + DictateDataType map[string]interface{} + ErrorOnUnknownFields bool + LargeDataSet bool + Path string + type ParquetLoadOptions struct + type SQLLoadOptions struct + Database Database + DictateDataType map[string]interface{} + KnownRowCount *int + Query string