Creating advanced figures in R
In this blog post we are replicating the picture below which was originally created in SAS Let’s first generate some dummy data: library(tidyverse) n_pat <- 25 patient <- 1:n_pat treatment…
In this blog post we are replicating the picture below which was originally created in SAS Let’s first generate some dummy data: library(tidyverse) n_pat <- 25 patient <- 1:n_pat treatment…
Goal of this post is to introduce a small program developed by Aastat Background and motivation In medical datascience we occasionally must send data to FDA. Usually the data is…
In this blog post we are making the picture below. We will be using library called tidyverse in this tutorial. Tidyverse is a collection ofpackages that share underlying design philosophy,…