Update chapter3.qmd

This commit is contained in:
Kyle Belanger 2023-06-05 14:11:01 -04:00
parent c4ca4a7f8d
commit a0f003ff40

View file

@ -2,22 +2,11 @@
## IRB ## IRB
Based on the information you submitted for this project, the Campbell Based on the information you submitted for this project, the Campbell University Institutional Review Board (Campbell IRB) determined this submission is Not Human Subjects Research as defined by 45 CFR 46.102(e).
University Institutional Review Board (Campbell IRB) determined this
submission is Not Human Subjects Research as defined by 45 CFR
46.102(e).
## Population and Data ## Population and Data
This study used the Medical Information Mart for Intensive Care (MIMIC) This study used the Medical Information Mart for Intensive Care (MIMIC) database [@johnsonalistair]. MIMIC (Medical Information Mart for Intensive Care) is an extensive, freely-available database comprising de-identified health-related data from patients who were admitted to the critical care units of the Beth Israel Deaconess Medical Center. The database contains many different types of information, but only data from the patients and laboratory events table are used in this study. The study uses version IV of the database, comprising data from 2008 - 2019.
database [@johnsonalistair]. MIMIC (Medical Information Mart for
Intensive Care) is an extensive, freely-available database comprising
de-identified health-related data from patients who were admitted to the
critical care units of the Beth Israel Deaconess Medical Center. The
database contains many different types of information, but only data
from the patients and laboratory events table are used in this study.
The study uses version IV of the database, comprising data from 2008 -
2019.
## Data Variables and Outcomes ## Data Variables and Outcomes
@ -28,37 +17,19 @@ source(here::here("ML","1-data-exploration.R"))
``` ```
A total of 18 variables were chosen for this study. The age and gender A total of 18 variables were chosen for this study. The age and gender of the patient were pulled from the patient table in the MIMIC database. While this database contains some additional demographic information, it is incomplete and thus unusable for this study. 15 lab values were selected for this study, this includes:
of the patient were pulled from the patient table in the MIMIC database.
While this database contains some additional demographic information, it
is incomplete and thus unusable for this study. 15 lab values were
selected for this study, this includes:
- **BMP**: BUN, bicarbonate, calcium, chloride, creatinine, glucose, - **BMP**: BUN, bicarbonate, calcium, chloride, creatinine, glucose, potassium, sodium
potassium, sodium
- **CBC**: Hematocrit, hemoglobin, platelet count, red blood cell - **CBC**: Hematocrit, hemoglobin, platelet count, red blood cell count, white blood cell count
count, white blood cell count
- TSH - TSH
- Free T4 - Free T4
The unique patient id and chart time were also retained for identifying The unique patient id and chart time were also retained for identifying each sample. Each sample contains one set of 16 lab values for each patient. Patients may have several samples in the data set run at different times. Rows were retained as long as they had less than three missing results. These missing results can be filled in by imputation later in the process. Samples were also filtered for those with TSH above or below the reference range of 0.27 - 4.2 uIU/mL. These represent samples that would have reflexed for Free T4 testing. After filtering, the final data set contained `r nrow(ds1)` rows.
each sample. Each sample contains one set of 16 lab values for each
patient. Patients may have several samples in the data set run at
different times. Rows were retained as long as they had less than three
missing results. These missing results can be filled in by imputation
later in the process. Samples were also filtered for those with TSH
above or below the reference range of 0.27 - 4.2 uIU/mL. These represent
samples that would have reflexed for Free T4 testing. After filtering,
the final data set contained `r nrow(ds1)` rows.
Once the final data set was collected, an additional column was created Once the final data set was collected, an additional column was created for the outcome variable to determine if the Free T4 value was diagnostic. This outcome variable was used for building classification models. The classification variable was not used in regression models. @tbl-outcome_var shows how the outcomes were added
for the outcome variable to determine if the Free T4 value was
diagnostic. This outcome variable was used for building classification
models. The classification variable was not used in regression models.
@tbl-outcome_var shows how the outcomes were added
| TSH Value | Free T4 Value | Outcome | | TSH Value | Free T4 Value | Outcome |
|---------------|---------------|---------------------| |---------------|---------------|---------------------|
@ -69,14 +40,7 @@ models. The classification variable was not used in regression models.
: Outcome Variable {#tbl-outcome_var} : Outcome Variable {#tbl-outcome_var}
. @tbl-data_summary shows the summary statistics of each variable . @tbl-data_summary shows the summary statistics of each variable selected for the study. Each numeric variable is listed with the percent missing, median, and interquartile range (IQR). The data set is weighted toward elevated TSH levels, with 80% of values falling into that category. Glucose and Calcium have several missing values at `r gtsummary::inline_text(summary_tbl, variable = GLU, column = n)` and `r gtsummary::inline_text(summary_tbl, variable = CA, column = n)`, respectively.
selected for the study. Each numeric variable is listed with the percent
missing, median, and interquartile range (IQR). The data set is weighted
toward elevated TSH levels, with 80% of values falling into that
category. Glucose and Calcium have several missing values at
`r gtsummary::inline_text(summary_tbl, variable = GLU, column = n)` and
`r gtsummary::inline_text(summary_tbl, variable = CA, column = n)`,
respectively.
```{r} ```{r}
#| label: tbl-data_summary #| label: tbl-data_summary
@ -88,40 +52,19 @@ summary_tbl %>% gtsummary$as_kable()
## Data Inspection ## Data Inspection
By examining @tbl-data_summary several important data set By examining @tbl-data_summary several important data set characteristics quickly come to light without explanation. The median age across the data set, as a whole, is quite similar, with a median age across all categories of 62.5. Females are better represented in the data set, with higher percentages in all categories. Across all categories, the median values for each lab result are pretty similar. The expectation for this is Red Blood cells, which show more considerable variation across the various categories.
characteristics quickly come to light without explanation. The median
age across the data set, as a whole, is quite similar, with a median age
across all categories of 62.5. Females are better represented in the
data set, with higher percentages in all categories. Across all
categories, the median values for each lab result are pretty similar.
The expectation for this is Red Blood cells, which show more
considerable variation across the various categories.
![Distribution of ![Distribution of Variables](figures/distrubution_histo){#fig-distro_histo}
Variables](figures/distrubution_histo){#fig-distro_histo}
When examining @fig-distro_histo, many clinical chemistry values do not When examining @fig-distro_histo, many clinical chemistry values do not show a standard distribution. However, the hematology results typically do appear to follow a standard distribution. While not a problem for most tree-based classification models, many regression models perform better with standard variables. Standardizing variables provides a common comparable unit of measure across all the variables [@boehmke2020]. Since lab values do not contain negative numbers, all numeric values will be log-transformed to bring them to normal distributions.
show a standard distribution. However, the hematology results typically
do appear to follow a standard distribution. While not a problem for
most tree-based classification models, many regression models perform
better with standard variables. Standardizing variables provides a
common comparable unit of measure across all the variables
[@boehmke2020]. Since lab values do not contain negative numbers, all
numeric values will be log-transformed to bring them to normal
distributions.
![Variable Correlation Plot](figures/corr_plot){#fig-corr_plot} ![Variable Correlation Plot](figures/corr_plot){#fig-corr_plot}
@fig-corr_plot shows a high correlation between better Hemoglobin, @fig-corr_plot shows a high correlation between better Hemoglobin, hematocrit, and Red Blood Cell values (as would be expected). While high correlation does not lead to model issues, it can cause unnecessary computations with little value. However, due to the small about of variables to begin with <!--# FIX THIS SENTENCE -->
hematocrit, and Red Blood Cell values (as would be expected). While high
correlation does not lead to model issues, it can cause unnecessary
computations with little value. However, due to the small about of
variables to begin with
## Data Tools ## Data Tools
All data handling and modeling were performed using R and R Studio. The All data handling and modeling were performed using R and R Studio. The current report was rendered in the following environment.
current report was rendered in the following environment.
```{r} ```{r}
#| label: tbl-platform-info #| label: tbl-platform-info
@ -175,14 +118,7 @@ knitr::kable(
## Model Selection ## Model Selection
Both classification and regression models were screened using a random Both classification and regression models were screened using a random grid search to tune hyperparameters. The models were tested against the training data set to find the best-fit model. @fig-reg-screen shows the results of the model screening for regression models, using root mean square error (RMSE) as the ranking method. Random Forest models and boosted trees performed similarly and were selected for further testing. A full grid search was performed on both models, with a Random Forest model as the final selection. The final hyperparameters selected were:
grid search to tune hyperparameters. The models were tested against the
training data set to find the best-fit model. @fig-reg-screen shows the
results of the model screening for regression models, using root mean
square error (RMSE) as the ranking method. Random Forest models and
boosted trees performed similarly and were selected for further testing.
A full grid search was performed on both models, with a Random Forest
model as the final selection. The final hyperparameters selected were:
- mtry: 8 - mtry: 8
@ -192,12 +128,7 @@ model as the final selection. The final hyperparameters selected were:
![Regression Model Screen](figures/reg_screen){#fig-reg-screen} ![Regression Model Screen](figures/reg_screen){#fig-reg-screen}
@fig-class-screen shows the results of the model screen for @fig-class-screen shows the results of the model screen for classification models using accuracy as the ranking method. As with regression models, boosted tress and random forest models performed the best. After completing a full grid search of both model types, a random forest model was again chosen as the final model. The final hyperparameters for the model selected were:
classification models using accuracy as the ranking method. As with
regression models, boosted tress and random forest models performed the
best. After completing a full grid search of both model types, a random
forest model was again chosen as the final model. The final
hyperparameters for the model selected were:
- mtry: 8 - mtry: 8