Table operations
The module rows.operations
contains some operations you can do on your
Table
objects:
rows.operations.join
: return a newTable
based on the joining of a list ofTable
s and a field to act askey
between them. Note: for performance reasons you may not use this function, since the join operation is done in Python - you can also convert everything to SQLite, query data there and then have your results in aTable
, like therows query
command.rows.operations.transform
: return a newTable
based on other tables and a transformation function.rows.operations.transpose
: transpose theTable
based on a specific field.
For more details see the reference.