A data standard for working with event stream data
Project description
Medical Event Data Standard
The Medical Event Data Standard (MEDS) is a draft data schema for storing streams of medical events, often sourced from either Electronic Health Records or claims records.
The core of the standard is that we define a patient
data structure that contains a series of time stamped events, that in turn contain measurements of various sorts.
The Python type signature for the schema is as follows:
Patient = TypedDict('Patient', {
'patient_id': int,
'events': List[Event],
})
Event = TypedDict('Event',{
'time': NotRequired[datetime.datetime],
'code': str,
'text_value': NotRequired[str],
'numeric_value': NotRequired[float],
'datetime_value': NotRequired[datetime.datetime],
'metadata': NotRequired[Mapping[str, Any]],
})
We also provide ETLs to convert common data formats to this schema: https://github.com/Medical-Event-Data-Standard/meds_etl
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
meds-0.2.0.tar.gz
(11.1 kB
view hashes)
Built Distribution
meds-0.2.0-py3-none-any.whl
(7.9 kB
view hashes)