Skip to contents

MIMIC3Dataset: Dataset class for MIMIC-III

MIMIC3Dataset: Dataset class for MIMIC-III

Details

This class inherits from BaseDataset and is specialized for handling MIMIC-III data. It ensures key tables like patients, admissions, and icustays are loaded, and allows appending additional tables. Also provides per-table preprocessing.

Super class

RHealth::BaseDataset -> MIMIC3Dataset

Methods

Inherited methods


Method new()

initialize MIMIC3Dataset

Usage

MIMIC3Dataset$new(
  root,
  tables = character(),
  dataset_name = NULL,
  config_path = NULL,
  dev = FALSE,
  ...
)

Arguments

root

Root directory of the dataset.

tables

Character vector of extra tables to include.

dataset_name

Optional dataset name.

config_path

Optional path to YAML config file.

dev

Logical flag for dev mode.

...

Additional arguments passed to BaseDataset$initialize.


Method clone()

The objects of this class are cloneable with this method.

Usage

MIMIC3Dataset$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.