generated from lemaslab/project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
good first issueGood for newcomersGood for newcomers
Milestone
Description
📌 Issue Description
We need to compare two lists of ICD codes using R and generate an HTML report using knitr to summarize the differences. The report will identify missing codes that need to be requested from the Integrated Data Repository (IDR) (IDR UF Health).
🔹 Task Overview
-
Input Data:
- List A: smm_codes_we_have.csv: ICD codes we currently have.
- List B: smm_codes_oneflorida.csv: ICD codes available from the IDR.
-
Goal:
- Identify which codes in List A are not present in List B.
- Output a formatted HTML report summarizing findings.
📊 Expected Output
- A structured HTML report containing:
- Overview of the analysis.
- Summary table (total and missing ICD codes).
- A downloadable CSV file of missing codes.
- code will be uploaded to the "task_02_2025" directory
🔧 Suggested Approach
- Load both lists in R (
read.csv()orreadxl::read_excel()). - Use
setdiff()to find missing ICD codes:missing_codes <- setdiff(list_a$ICD_Code, list_b$ICD_Code)
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
good first issueGood for newcomersGood for newcomers