R Medicine 2026 Talk
April 27, 2026
Large projects arrive as dozens of spreadsheets, CSVs, and labelled survey extracts — no single tidy file.
Analysts spend 40+ minutes on repetitive import clicks — time that should go to modelling and insights.
Individual tools exist inside the tidyverse, but no single interface loads heterogeneous files in one step.
A single, vectorised API wrapping readxl, readr, googlesheets4, and haven — making bulk data import fast and reproducible.
generate_dictionary()
inspect_na() & fill_missing_values()
# ── Spreadsheets ─────────────────────────
read_excel_workbook(path)
read_excel_files_from_dir(dir_path)
read_gsheets(sheet_id)
# ── Flat files ───────────────────────────
read_csv_files_from_dir(dir_path)
# ── Labelled survey data ──────────────────
read_spss_data(path)
read_stata_data(path)
# ── Quality control ───────────────────────
generate_dictionary(data)
fill_missing_values(data)
inspect_na(data)bulkreadr is open-source and ready for your research
You can contribute to the development of this package by:
star/clone the package repository via https://github.com/gbganalyst/bulkreadr📦 Code Repository: gbganalyst.github.io/r-medicine-2026