Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ReplaceMissingValues ¶
func ReplaceMissingValues(defaultValue types.TypedValue) backend.ApplyFunction
Types ¶
type Aggregatable ¶
type Aggs ¶
type Aggs map[string]aggs.Aggregation
type Dataframe ¶
type Dataframe interface { Filterable Transformable Aggregatable Joinable VisitRows(visitor backend.RowVisitor) Dataframe VisitColumn(visitor backend.ColumnVisitor) GetRowCount() int GetHeaders() backend.Headers Printable // contains filtered or unexported methods }
type Filterable ¶
type Joinable ¶
type Joinable interface { LeftJoin(with Dataframe, on conds.JoinCondition) Dataframe RightJoin(with Dataframe, on conds.JoinCondition) Dataframe InnerJoin(with Dataframe, on conds.JoinCondition) Dataframe OuterJoin(with Dataframe, on conds.JoinCondition) Dataframe }
type Transformable ¶
type Transformable interface { UpdateColumn(name string, fn backend.MutateFunction) Dataframe AddColumn(name string, kind types.TypeKind, fn backend.MutateFunction) Dataframe Concat(with Dataframe) Dataframe Split(cond conds.Condition) (onTrue Dataframe, onFalse Dataframe) CastColumn(name string, to types.TypeKind) Dataframe Apply(name string, fn backend.ApplyFunction) Dataframe }
Click to show internal directories.
Click to hide internal directories.