rowwithout
Rowwithout is a data-processing operation that yields a new tabular dataset by removing rows that satisfy a given condition or belong to a specified set of row identifiers. The term emphasizes exclusion: the resulting table contains all rows not marked for removal.
In typical usage, rowwithout is expressed as rowwithout(dataset, predicate) or rowwithout(dataset, indices). The predicate is a
Examples illustrate common patterns. For a table named sales, rowwithout(sales, region == 'West') returns all rows not
Performance and semantics depend on the language or framework. Rowwithout can be implemented with eager filtering