Hypothesis Testing in Healthcare: Drug Safety
A pharmaceutical company GlobalXYZ has just completed a randomized controlled drug trial. To promote transparency and reproducibility of the drug's outcome, they (GlobalXYZ) have presented the dataset to your organization, a non-profit that focuses primarily on drug safety.
The dataset provided contained five adverse effects, demographic data, vital signs, etc. Your organization is primarily interested in the drug's adverse reactions. It wants to know if the adverse reactions, if any, are of significant proportions. It has asked you to explore and answer some questions from the data.
The dataset drug_safety.csv
was obtained from Hbiostat courtesy of the Vanderbilt University Department of Biostatistics. It contained five adverse effects: headache, abdominal pain, dyspepsia, upper respiratory infection, chronic obstructive airway disease (COAD), demographic data, vital signs, lab measures, etc. The ratio of drug observations to placebo observations is 2 to 1.
For this project, the dataset has been modified to reflect the presence and absence of adverse effects adverse_effects
and the number of adverse effects in a single individual num_effects
.
The columns in the modified dataset are:
Column | Description |
---|---|
sex | The gender of the individual |
age | The age of the individual |
week | The week of the drug testing |
trx | The treatment (Drug) and control (Placebo) groups |
wbc | The count of white blood cells |
rbc | The count of red blood cells |
adverse_effects | The presence of at least a single adverse effect |
num_effects | The number of adverse effects experienced by a single individual |
The original dataset can be found here.
Your organization has asked you to explore and answer some questions from the data collected. See the project instructions.
# Import packages
import numpy as np
import pandas as pd
from statsmodels.stats.proportion import proportions_ztest
import pingouin
import seaborn as sns
import matplotlib.pyplot as plt
# Load the dataset
drug_safety = pd.read_csv("drug_safety.csv")
# Start coding here...
drug_safety.sample(10)
drug_safety.info()
Q-1) Determine if the proportion of adverse effects differs significantly between the Drug and Placebo groups, saving the p-value as a variable called two_sample_p_value.
H_0 : Proportion of adverse effectes is the same for Drug and Placebo groups
H_0 : P(drug) - P(placebo) = 0
H_A : Proportion of adverse effectes is different for Drug and Placebo groups
H_A : P(drug) - P(placebo) != 0
Solution A
Caluculate Z score
#get the prpoprtion of deverse effects for each group
prop_hat = drug_safety.groupby('trx')['adverse_effects'].value_counts(normalize = True)
prop_hat
prop_hat_drug = prop_hat[('Drug', 'Yes')]
prop_hat_drug
prop_hat_placebo = prop_hat[('Placebo', 'Yes')]
prop_hat_placebo
#get the number of data set for each group
n = drug_safety.groupby('trx').size()
n
n_drug = n['Drug']
n_drug
n_placebo = n['Placebo']
n_placebo
#calculate z score paramters
p_hat = (n_drug * prop_hat_drug + n_placebo * prop_hat_placebo) / (n_drug + n_placebo)
p_hat
std_error = np.sqrt(p_hat * (1-p_hat) / n_drug +
p_hat * (1-p_hat) / n_placebo)
std_error