This repository contains code and data for analyzing diversity in head and neck cancer clinical trials, specifically focusing on the inclusion of non-white participants in these studies.
Head and neck cancer disproportionately affects certain racial and ethnic groups. This analysis aims to understand factors that contribute to higher diversity in clinical trials and identify patterns that could lead to more inclusive research.
Total participants = # white participants + # non-white participants
Comparative Analysis: Studies are categorized into high-diversity (top 20%) and low-diversity (bottom 20%) groups based on this metric.
Factor Identification: Various factors are examined to understand what contributes to more diverse clinical trials.
The analysis followed these key steps:
The study examined specific eligibility restrictions and their potential impact on diversity:
Feature | Description |
---|---|
age_restrict | 0 if the restriction is age>18, 1 for other restrictions (e.g., 18<age<75) |
stage_size | Restrictions on the cancer stage and the size of the tumor |
cancer_site | Restrictions on the cancer site |
histological_type | Whether the study was limited to SCC (Squamous Cell Carcinoma) or any other type |
performance_score | Restrictions on performance score (e.g., ECOG performance) |
comorbidities | Restrictions on comorbidities |
hx_of_tt | Restrictions on treatment history for cancer |
lab_values | Restrictions on lab test values |
pregnancy_or_contraception | Restrictions on pregnancy or particular contraceptives |
misc | Other restrictions (e.g., smoking status, ethnicity requirements) |
eligibility_score | Sum of all restriction scores above |
The analysis also included general study characteristics:
├── README.md # Project documentation
├── src/ # Source code directory
│ ├── data_processing.py # Functions for data loading and preprocessing
│ ├── analysis.py # Functions for statistical analysis
│ ├── visualization.py # Functions for creating visualizations
│ └── main.py # Main script that orchestrates the analysis
├── plots/ # Generated visualizations
│ ├── box_plot_eligbility_score_diverse_vs_non_diverse.png
│ ├── box_plot_num_participants_top_vs_bottom.png
│ ├── distribution_age_restrict.png
│ ├── distribution_comorbidities.png
│ ├── distribution_histological_type.png
│ ├── distribution_hx_of_tt.png
│ ├── distribution_is_single_institution.png
│ ├── distribution_lab_values.png
│ ├── distribution_misc.png
│ ├── distribution_num_participants_top_vs_bottom_studies_strat_gender.png
│ ├── distribution_performance_score.png
│ ├── distribution_site.png
│ ├── distribution_stage_size.png
│ └── geo_distribution.png
├── top_20_studies.csv # Dataset of top 20% diverse studies
├── bottom_20_studies.csv # Dataset of bottom 20% diverse studies
├── Diversity in head and neck clinical trials - plots (2).pdf # PDF with plot descriptions
├── Analysis.ipynb # Jupyter notebook with initial analysis
└── Analysis top20 vs bottom20.ipynb # Jupyter notebook with comparative analysis
The analysis of eligibility criteria revealed that more diverse studies tend to have fewer restrictive criteria:
The above plot shows the distribution of eligibility scores for diverse vs. non-diverse studies. Higher scores indicate more restrictive eligibility criteria.
The geographic location of studies plays a significant role in diversity:
This map shows the locations of the top and bottom diverse studies, with color indicating the population diversity score of each location.
Studies with higher diversity had different participant demographics:
This plot shows the distribution of male and female participants in top vs. bottom diverse studies.
Specific eligibility criteria had different prevalence in diverse vs. non-diverse studies:
This plot compares the prevalence of age restrictions beyond the standard adult age (18+) between high and low diversity studies.
This plot compares the prevalence of restrictions on cancer histological type (e.g., SCC only) between high and low diversity studies.
This plot compares the prevalence of ECOG or other performance score restrictions between high and low diversity studies.
This plot compares the prevalence of comorbidity restrictions between high and low diversity studies.
This plot compares the prevalence of laboratory value restrictions between high and low diversity studies.
This plot compares the prevalence of tumor stage or size restrictions between high and low diversity studies.
This plot compares the prevalence of cancer site restrictions between high and low diversity studies.
This plot compares the prevalence of previous treatment history restrictions between high and low diversity studies.
This plot compares the prevalence of other restrictions (such as smoking status or ethnicity requirements) between high and low diversity studies.
This plot shows the distribution of single-institution vs. multi-institution studies among diverse and non-diverse trials.
The data for this analysis was extracted from ClinicalTrials.gov, focusing on head and neck cancer clinical trials conducted in the United States. Only studies that reported race information were included in the analysis.
The analysis identified several factors that are associated with more diverse head and neck cancer clinical trials:
Specific criteria that appear to impact diversity include age restrictions, performance score requirements, and histological type restrictions.
Geographic location: Studies in areas with more diverse populations have higher diversity scores.
Institutional setting: Different types of institutions show varying levels of success in recruiting diverse participants.
Study size: There is a relationship between the number of participants and diversity.
These findings suggest potential strategies for improving diversity in future clinical trials, such as revisiting eligibility criteria, focusing on inclusive recruitment strategies, and considering geographic factors when planning trial sites.
# Run the main analysis script
python src/main.py
Or explore the Jupyter notebooks for an interactive analysis experience:
jupyter notebook "Analysis.ipynb"
jupyter notebook "Analysis top20 vs bottom20.ipynb"
This project is licensed under the MIT License - see the LICENSE file for details.
This analysis was conducted as part of a research project examining diversity and inclusion in clinical trials for head and neck cancer.