Description: Datapoints are an abstract concept that connect series conditions, conditions and datums together. Think of them as equivalent to a row in a data table.
- id: datapoints primary key (auto-generated and unique)
- dataset_id: foreign key (datasets table) of the dataset the
dataseriesis part of - dataseries_id: foreign key (dataseries table) of the
dataseriesthe condition belongs to - row_index: the index of a datapoint in a dataseries
- updated: datetime last updated
The dataset_id field was added as a convenience to allow statistics generation. Formally, the link between datasets and datapoints is:
datapointsare linked todataseriesdataseriesare linked todatasets


