A Hospital-Based Epidemiological Study
| Nik Danilov, MD, MPH | School of Public Health, University of Haifa, Israel | 2025 |
View the final report on GitHub Pages
This repository contains a fully reproducible epidemiological analysis of 94 lung cancer (LC) cases managed at the Lady Davis Carmel Medical Center, Haifa, Israel (2024–2025). The dataset was compiled through systematic review of anonymized electronic medical records extracted from the Ofek intra/interhospital medical informatics platform.
The analysis pursues two complementary objectives:
To characterize the spatial distribution of LC cases across the Haifa District and Northern District of Israel and evaluate whether observed geographic patterns are explained by established confounders — particularly smoking prevalence and population size.
To describe the molecular and histopathological profile of the cohort and examine how biomarker distributions align with internationally reported data.
The report is authored in Quarto and rendered as an interactive HTML document, combining spatial epidemiology with clinical-molecular characterization in a single reproducible workflow.
| Component | Tool |
|---|---|
| Reproducible report | Quarto (.qmd) → HTML |
| Data wrangling | R (readxl, dplyr) |
| Tables | R (knitr, kableExtra) |
| Static visualization | R (ggplot2, patchwork) |
| Interactive maps | R (leaflet) |
| Spatial statistics | R (spdep) |
The full data dictionary is available in the rendered report (Table 1).
LUNG_CANCER/
├── data/
│ └── CarmelMC_LungCancer.xlsx # Clinical-laboratory dataset (94 cases)
├── EnvEpi_LungCancer_files/ # Quarto HTML supporting files
├── EnvEpi_LungCancer.qmd # Source document (Quarto/R)
├── EnvEpi_LungCancer.html # Rendered interactive report
├── EnvEpi_LungCancer.Rproj # RStudio project file
├── .gitattributes # Marks R as a primary tool
├── .gitignore
└── README.md
EnvEpi_LungCancer.Rproj in RStudioinstall.packages(c("readxl", "dplyr", "knitr", "kableExtra",
"ggplot2", "patchwork", "tidyr",
"leaflet", "spdep"))
quarto::quarto_render("EnvEpi_LungCancer.qmd")
The analysis demonstrates a key principle of spatial epidemiology: apparent geographic clusters of disease cannot be interpreted at face value. Sequential adjustment for population denominators and behavioral confounders (smoking) overturned an initially significant clustering signal, illustrating how rigorous analysis can prevent misleading conclusions from crude case maps.