cycquery.eicu.EICUQuerier¶
- class EICUQuerier(dbms, user='', password='', host='', port=None, database='', schemas=None)[source]¶
Bases:
DatasetQuerier
EICU dataset querier.
Methods
Get a table and possibly map columns to have standard names.
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.
- 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:
- 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]