Go to course organization on GitHub.
In addition to your private individual repositories, you should now see a repo with the prefix hw-02-licorice-. Go to that repository.
Clone the repo and start a new project in RStudio.
Postoperative sore throat is an annoying complication of intubation after surgery, particularly with wider gauge double-lumen tubes. Reutzler et al. (2013) performed an experimental study in Germany among patients having elective surgery who required intubation with a double-lumen tube. Prior to anesthesia, patients were randomly assigned to gargle either a licorice-based solution or sugar water (as placebo).
Sore throat was evaluated 30 minutes, 90 minutes, and 4 hours after conclusion of the surgery, evaluated using a numeric scale from 0 to 10, where 0 = no pain and 10 = worst pain. For the purposes of this assignment, we will treat these pain scales as numeric.
The data are available in your assignment repository as a .csv file. Some relevant variables of interest are:
preOp_gender
: Gender (0 = Male; 1 = Female)preOp_calcBMI
: Body mass index in kg/m\(^2\)preOp_asa
: American Society of Anesthesiologists physical status classification (1 = normal healthy patient, 2 = mild systemic disease, 3 = severe systemic disease)treat
: Treatment given (0 = Sugar placebo; 1 = Licorice solution)pacu30min_throatPain
: Sore throat pain score 30 minutes after arrival in the post-anesthesia care unit (PACU)Overall hint: When performing a hypothesis test, you must provide the significance level of your test, the null and alternative hypotheses, the p-value, your decision, and an interpretation of the p-value in context of the original research question. If you are using a non-simulation-based approach, you must also provide the value of your test statistic and the distribution of that test statistic assuming the null hypothesis is true.
Overall hint: To ensure reproducibility, for all exercises requiring a simulation-based approach, set a seed of your choice. Additionally, ensure that the number of repetitions is sufficiently large.
Hint: Be careful with missing values of the variables you’re analyzing in each question!
Construct and interpret a 95% confidence interval for the mean sore throat pain score 30 minutes after arrival in the PACU among all patients using both a simulation-based approach and a CLT-based approach. Compare these two intervals.
Suppose that these patients are representative of German patients undergoing surgeries that require intubation. Is there evidence that the mean BMI among such patients differs from the mean BMI among all German adults of 26 kg/m\(^2\)? Assess this hypothesis using a simulation-based approach. Provide a visualization of your simulated null distribution and observed data (sample statistic).
It may be possible that ASA classification may be associated with throat pain after surgery. Create a new binary variable that corresponds to whether a patient experienced any throat pain at all, 30 minutes after surgery (i.e., if they had a non-zero pain score at that time). Then assess whether there is a relationship between ASA classification and having any throat pain after surgery among all patients undergoing surgeries that require intubation.
Now, let’s examine any potential effects of licorice solution on reducing throat pain after surgery.
In Exercises 7 - 11, determine whether the statements are TRUE or FALSE. If the statement is FALSE, explain why it is FALSE.
The mean BMI among patients receiving licorice solution was 25.6 kg/m\(^2\) and the mean BMI among patients receiving sugar solution placebo was 25.6 kg/m\(^2\). In assessing whether there is a difference in mean BMI between the two treatment groups using a CLT-based approach, the researchers obtained a p-value of 0.925.
Today’s dataset was made available by the Lerner Research Institute and Dr. Amy S. Nowacki of the Cleveland Clinic. This dataset is representative of a study by Ruetzler et al. (2013).