R/Medicine 101: Intro to R for Clinicians

A gentle introduction to data science for healthcare professionals and clinical researchers.

Stephan Kadauke https://www.linkedin.com/in/skadauke/ (Children’s Hospital of Philadelphia)https://www.chop.edu , Joseph Rudolf https://healthcare.utah.edu/fad/mddetail.php?physicianID=u6005682&name=joseph-w-rudolf (University of Utah)https://healthcare.utah.edu/ , Amrom Obstfeld https://www.chop.edu/doctors/obstfeld-amron (Children’s Hospital of Philadelphia)https://www.chop.edu

Table of Contents


Welcome!

This is the website for the R/Medicine 2020 pre-conference short course Introduction to R for Clinicians.

You’ll learn about R Markdown, a framework for reproducible data science, and how to perform essential data science tasks such as data import, visualization, transformation, and communication.

For the best experience, we suggest the following (none of the below are absolutely necessary!):

The entire course will be recorded and made available to registered R/Medicine 2020 conference participants for replay. To protect the privacy of participants, no breakouts, video feeds, or chats will be recorded. We also request that you refrain from recording or screen-grabbing any part of the course.

Pre-work

Essential

After the course

If you would like to practice with the materials from the course, go to the GitHub repository, and click the green button labeled “Code” to download the repository as a .ZIP file.

To install all the packages we used in the training environment, open RStudio and run the following command in the Console:


install.packages(c(
  "tidyverse",
  "rmarkdown",
  "shiny",
  "flexdashboard",
  "plotly",
  "DT"
))

Resources

Acknowledgments

This course draws from various sources, most notably Garrett Grolemund’s Welcome to the Tidyverse and Greg Wilson’s Teaching Tech Together. The section of the course discussing dashboards was initially developed by Patrick Mathias. This site uses the distill package.