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#

tlc.client.operations.table_operations.apply_operations(input_table: tlc.core.objects.table.Table, operations: list[tlc.core.operations.operation.Operation], *, table_url: tlc.core.url.Url | str | None = None) tlc.core.objects.table.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.