UNPKG

datamodel

Version:

Relational algebra compliant in-memory tabular data store

15 lines (13 loc) 274 B
/** * DimensionSubtype enum defines the sub types of the Dimensional Field. * * @readonly * @enum {string} */ const DimensionSubtype = { CATEGORICAL: 'categorical', TEMPORAL: 'temporal', GEO: 'geo', BINNED: 'binned' }; export default DimensionSubtype;