TableAs
TableAs is a standard and library for representing relational data as first-class objects. It provides a uniform API for tabular data, with typed columns, row-level operations, and metadata about schemas and relationships. The design emphasizes immutability and lazy evaluation to enable efficient processing of large datasets and reproducible analyses.
The project originated at DataForge Labs in the early 2010s as an attempt to unify CSV-like interchange
Core features include explicit column typings, schema validation, support for relational operations such as joins and
Typical usage involves creating a TableAs instance from a data source, applying filtering and projection, performing
See also: CSV, JSON, Parquet, relational algebra, and various DataFrame libraries used in data science.