cinemascience / pycinema

cinema engine toolkit
Other
1 stars 4 forks source link

Develop API to support common operations on tables (insert, delete, etc.) #77

Open dhrogers opened 11 months ago

dhrogers commented 11 months ago

Many filters will need to operate on tables as a side effect. For example, a filter may compute a value and add a new column to an input table.

These insert, delete, etc. operations should be supported by a common API that is not at the filter level.

This may mean that a Table should be a data object, or that there are helper functions that support common operations like this on tables.