cycquery.mimiciii.MIMICIIIQuerier¶
- class MIMICIIIQuerier(dbms, user='', password='', host='', port=None, database='', schemas=None)[source]¶
Bases:
DatasetQuerier
MIMIC-III dataset querier.
Methods
Query MIMICIII chartevents data.
Query MIMICIII diagnosis data.
Get a table and possibly map columns to have standard names.
Query MIMICIII labevents data.
List columns in a table.
List custom tables methods provided by the dataset API.
List schemas in the database to query.
List table methods that can be queried using the database.
- chartevents()[source]¶
Query MIMICIII chartevents data.
- Returns:
Constructed query, wrapped in an interface object.
- Return type:
- diagnoses()[source]¶
Query MIMICIII diagnosis data.
- Returns:
Constructed query, wrapped in an interface object.
- Return type:
- get_table(schema_name, table_name, cast_timestamp_cols=True)¶
Get a table and possibly map columns to have standard names.
Standardizing column names allows for columns to be recognized in downstream processing.
- Parameters:
- Returns:
Table with mapped columns.
- Return type:
- labevents()[source]¶
Query MIMICIII labevents data.
- Returns:
Constructed query, wrapped in an interface object.
- Return type:
- list_columns(schema_name, table_name)¶
List columns in a table.
- list_custom_tables()¶
List custom tables methods provided by the dataset API.
- Returns:
List of custom table names.
- Return type:
List[str]