• Language: en

DATA_FIELDS

An optional section where the names of the type_field, id_field and time_field can be redefined.

Example Data Fields

DATA_FIELDS:
    # Field name in data file that contains row type info, e.g. obs/dose etc
    type_field: TYPE

    # Field name in data file that contains identity string for each data row e.g. obs/dose etc
    id_field: ID

    # Field name in data file that contains time or event for each data row
    time_field: TIME

Main Fields

type_field

By default this field is:-

type_field: TYPE

This means the ‘TYPE’ field in data file specifies the type of row e.g. ‘dose’, ‘obs’, ‘reset’ etc.

id_field

By default this field is:-

id_field: ID

This means the ‘ID’ field in the data file specifies the identity of each subject in the population.

time_field

By default this field is:-

time_field: TIME

This means the ‘TIME’ field in data file specifies the time stamp of each observation, dose etc.

Back to Top