Table operations
The module rows.operations contains some operations you can do on your
Table objects:
rows.operations.join: return a newTablebased on the joining of a list ofTables and a field to act askeybetween 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 querycommand.rows.operations.transform: return a newTablebased on other tables and a transformation function.rows.operations.transpose: transpose theTablebased on a specific field.
For more details see the reference.