tlc.client.operations.table_operations

Perform operations on a table.

Module Contents

Functions

Function

Description

apply_operations

Perform a list of operations on a table, resulting in a new table with one new column per operation.

API

apply_operations(
input_table: Table,
operations: list[Operation],
*,
table_url: Url | str | None = None,
) Table

Perform a list of operations on a table, resulting in a new table with one new column per operation.

Parameters:
  • input_table – The table to apply the operations to.

  • operations – The operations to apply.

  • table_url – Optional URL to write the new table to. If None, table will be created next to the input table.

Returns:

A new table with the results of the operations.