TransformStep

A step in data preparation that performs a specific operation on the data.

Types

Link copied to clipboard
class Builder
Link copied to clipboard
object Companion

Properties

Link copied to clipboard

A transform step that groups data and applies aggregation functions to calculate summary values.

Link copied to clipboard

A transform step that combines rows from multiple sources by stacking them vertically.

Link copied to clipboard

A transform step that changes the data types of one or more columns.

Link copied to clipboard

A transform operation that creates calculated columns. Columns created in one such operation form a lexical closure.

Link copied to clipboard

A transform step that applies filter conditions.

Link copied to clipboard

A transform step that brings data from a source table.

Link copied to clipboard

A transform step that combines data from two sources based on specified join conditions.

Link copied to clipboard

A transform step that converts row values into columns to reshape the data structure.

Link copied to clipboard

A transform operation that projects columns. Operations that come after a projection can only refer to projected columns.

Link copied to clipboard

A transform step that changes the names of one or more columns.

Link copied to clipboard

A transform step that converts columns into rows to normalize the data structure.

Functions

Link copied to clipboard
inline fun copy(block: TransformStep.Builder.() -> Unit = {}): TransformStep
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
open override fun toString(): String