Working your way through a basic analysis
After a great discussion started by Jesse Maegan (@kiersi) on Twitter, I decided to post a workthrough of some (fake) experimental treatment data. These data correspond to a new (fake) research drug called AD-x37, a theoretical drug that has been shown to have beneficial outcomes on cognitive decline in mouse models of Alzheimer’s disease. In the current experiment we will be statistically testing whether the drug was effective in reducing cognitive impairment in dementia patients. See the data HERE.
We will be using MMSE (mini-mental status exam) scores to assess the degree of cognitive impairment. In a real clinical trial, many other variables would be recorded, but for the sake of a straightforward but multi-variate example we will stick to just MMSE.
We will be working through loading, plotting, analyzing, and saving the outputs of our analysis through the tidyverse, an “opinionated collection of R packages” designed for data analysis. We will limit dependence to two packages: tidyverse and broomwhile using base R for the rest. These two packages dramatically improve the data analysis workflow in my opinion. While other stats-heavy packages provide additional statistical testing, base R has a decent ability to perform statistical analyses out of the box. I will use knitr::kable to generate some html tables for a markdown document, but it is not necessary for the workflow.
Additionally, I will be uploading the Excel Sheet used in this example, so that you can re-create the workflow on your own. You can simply copy-paste the code seen here and it will run in R. If you would rather see the entire workflow in an R-Markdown document, please see here. R Markdown is a document created inside R that allows you to write code, execute it inline, and write comments/notes as you go. You could think of it like being able to write R code inside a basic Word document (but it can do a lot more than that!).
Although you may not be interested in the dataset I have provided, this hopefully provides a clear workflow for you to swap in your data of interest and accomplish a basic analysis!
Using the library
function we will load the tidyverse
. If you have never installed it before you can also use the install.packages("tidyverse")
call to install it for the first time. This package includes ggplot2
(graphs), dplyr
/tidyr
(summary statistics, data manipulation), and readxl
(reading excel files) as well as the pipe %>%
which will make our code much more readable! We will also load the broom
package to tidy up some of our statistical outputs. Lastly we will load knitr
for making nice html tables via knitr::kable
, but not necessary for simply saving the outputs to Excel.
This will output some message about the packages being loaded and any conflicts of function calls.
While I am calling readxl::read_xlsx
you could also simply use read_xlsx
, but in the interest of transparency, I will be using the full call to begin. The concept of calling a function with the use of ::
is important as some packages have conflicts in functions, for example multiple packages include the function select and summarize. As such, we can clarify from which package we want R to call our function from, so package::function
! To read more about the concept of “namespace” when calling functions, please look here.
readxl
is unfortunately a funny case, as installing the tidyverse
installs readxl
, but readxl
is not loaded when loading the tidyverse
via a library
call. As such we must either load readxl
like any other package or call both the package and the name as in readxl::read_xlsx
. readxl
allows us to read .xls, .xlsx files into R. Alternatively, you could convert your Excel sheet into .csv, which can be read by read_csv()
. By using the glimpse
function from dplyr
we can see how the variables were imported, as well as the first few rows.
Rows: 600
Columns: 5
$ age <dbl> 80, 85, 82, 80, 83, 79, 82, 79, 80, 79, 80, 7…
$ sex <dbl> 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 1, …
$ health_status <chr> "Healthy", "Healthy", "Healthy", "Healthy", "…
$ drug_treatment <chr> "Placebo", "Placebo", "Placebo", "Placebo", "…
$ mmse <dbl> 24.78988, 24.88192, 25.10903, 24.92636, 23.38…
We can collect some information about the dataset now. Namely, we have our 3 categorical/factor variables: sex, health_status, and drug_treatment and 1 dependent variable (DV): mmse. We also have age, but importantly it is recorded as a discrete number instead of as a factor (eg as 85 years, instead of old). Thus we can look at age, but we will not use it as a factor in our ANOVA.
Checking the data distribution
We will use our first ggplot2call to create a graph showing the distribution of age. To break down what we are doing, we need to call ggplot, tell it what data to use, and use the aes or aesthetic
call to assign the x coordinate. We then add a +
which tells ggplot to include the next line of code. The geom_density
tells R that we want to make create a density distribution layer and we want to fillit with a blue color! For more info about ggplot2 please go HERE or here.