Describes the metadata for a data table within the dataset including file path, patient ID field, timestamp columns, attribute columns, and join specifications.
Public fields
file_pathPath to the table file (string)
patient_idOptional string identifying the patient ID column
timestampOptional string or character vector identifying time columns
timestamp_formatOptional format string for parsing timestamps
attributesCharacter vector of attribute column names
joinList of JoinConfig objects describing how to join auxiliary tables
Methods
Method new()
Create a new TableConfig instance.
Usage
TableConfig$new(
file_path,
patient_id = NULL,
timestamp = NULL,
timestamp_format = NULL,
attributes,
join = NULL
)