7 A general approach to doing statistical analyses
When working with data in research it is almost impossible to avoid needing to do some form of statistical analysis. Running statistical analyses is usually methodical and well-defined, though it often involves trial and error. As it involves several steps: choosing the right analysis to do for your data, ensuring that your data is transformed in the right way to do your chosen statistical analysis, and lastly, extracting the results of your statistical analysis so you can present them. Sometimes it may feel overwhelming and complicated, which it definitely can be, but it doesnβt have to be. By taking a structured approach, you can make the process easier and feel more in control.
In R, statistical methods are often developed by researchers with little software training, which can make learning new methods challenging. However, having a framework for running analyses can simplify the process.
For this session, we are going to learn how we can generally set up and run statistical models, so that we can use it within targets.
7.1 Learning objectives
This sessionβs overall learning outcome is to:
- Describe the basic framework underlying most statistical analyses and use R to generate statistical results using this framework.
Specific objectives are to:
- Describe the general βworkflowβ: State the research question, construct a model, prepare the data, fit the model, and extract the results.
- Categorize the model definition step as a distinct, theory-driven step, separate from the data, and use parsnip functions to help with defining your model.
- Identify some data transformation techniques and evaluate which are good options given the data. Use functions in the recipes package to apply these transformations to your data.
- Use the broom package to extract the model results to later present them in graphical format (with ggplot2).
- Continue applying the concepts and functions used from the previous sessions.
Specific βantiβ-objectives on things that we will not learn:
- How to choose and apply the appropriate statistical model or tests.
- Statistical theory.
- How to determine relevant data transformations for statistical tests.
- How to interpret the statistical results.
This means that what we show is for demonstration purposes only. Our implementation and choice of model and analyses could be wrong if an expert were to review them.
We will be making a lot of function throughout this session and the next. This is just a fair warning!
7.2 π¬ Discussion activity: What does a βmodelβ mean?
Time: ~6 minutes.
In science and especially statistics, we talk a lot about βmodelsβ. But what does model actually mean? What different types of definitions can you think of? Is there a different understanding of model in statistics compared to other areas?
- Take 1 minute to think about your understanding of a model.
- Then, over the next 3 minutes, discuss with your neighbour about the meaning of βmodelβ and see if you can come to a shared understanding.
- Finally, over the next 2 minutes, we will share all together what a model is in the context of data analysis.
7.3 A brief introduction to statistical modelling and workflow
7.4 Defining a model for our lipidomics data
Letβs switch to working in the doc/learning.qmd
file to create those logistic regression models. First, we need to add library(tidymodels)
to the setup
code chunk. Copy and paste this code chunk below into the Quarto file.
doc/learning.qmd
```{r setup}
targets::tar_config_set(store = here::here("_targets"))
library(tidyverse)
library(targets)
library(tidymodels)
source(here::here("R/functions.R"))
lipidomics <- tar_read(lipidomics)
```
Since we will be using tidymodels, we need to install it, as well as explicitly add the parsnip, recipes, and workflows packages. Like tidyverse, we need to set tidymodels differently because it is a βmeta-packageβ. We might need to force installing it with pak::pak("tidymodels")
.
Console
use_package("tidymodels", "depends")
# pak::pak("tidymodels")
use_package("parsnip")
use_package("recipes")
use_package("workflows")
Before continuing, letβs commit the changes to the Git history with Ctrl-Alt-MCtrl-Alt-M or with the Palette (Ctrl-Shift-PCtrl-Shift-P, then type βcommitβ). Next, in the doc/learning.qmd
file, on the bottom of the document create a new header and code chunk:
doc/learning.qmd
## Building the model
```{r}
```
In the new code chunk, we will set up the model specs:
doc/learning.qmd
log_reg_specs <- logistic_reg() |>
set_engine("glm")
log_reg_specs
Logistic Regression Model Specification (classification)
Computational engine: glm
Running this on itβs own doesnβt show much, as you can see. But weβve now set the model we want to use.
7.5 Data transformations specific to modeling
Setting the model type was pretty easy right? The more difficult part comes next with the data transformations. recipes functions are almost entirely used to apply transformations that a model might specifically need, like mean-centering, removing missing values, and other aspects of data processing.
Letβs consider our lipidomics
dataset. In order for us to start our statistical analysis, we need the data to be structured in a certain way to be able to smoothly use it as input in our model. We have at least three necessary transformations, two of which can be done using a single tidyr function, while the third one can be fixed with recipes. Can you spot them?
Console
lipidomics
# A tibble: 504 Γ 6
code gender age class metabolite value
<chr> <chr> <dbl> <chr> <chr> <dbl>
1 ERI109 M 25 CT TMS (interntal standard) 208.
2 ERI109 M 25 CT Cholesterol 19.8
3 ERI109 M 25 CT Lipid CH3- 1 44.1
4 ERI109 M 25 CT Lipid CH3- 2 147.
5 ERI109 M 25 CT Cholesterol 27.2
6 ERI109 M 25 CT Lipid -CH2- 587.
7 ERI109 M 25 CT FA -CH2CH2COO- 31.6
8 ERI109 M 25 CT PUFA 29.0
9 ERI109 M 25 CT Phosphatidylethanolamine 6.78
10 ERI109 M 25 CT Phosphatidycholine 41.7
# βΉ 494 more rows
The first issue, which isnβt always an issue, depends heavily on the model type you use. Since we are using logistic regression, the model assumes that each row is an individual person. But our data is in the long format, so each person has multiple rows. The second issue is that there seems to be a data entry error, since there are multiple Cholesterol
values, while all other metabolites only have one:
doc/learning.qmd
lipidomics |>
count(code, metabolite) |>
filter(n > 1)
# A tibble: 36 Γ 3
code metabolite n
<chr> <chr> <int>
1 ERI109 Cholesterol 3
2 ERI111 Cholesterol 3
3 ERI140 Cholesterol 3
4 ERI142 Cholesterol 3
5 ERI143 Cholesterol 3
6 ERI144 Cholesterol 3
7 ERI145 Cholesterol 3
8 ERI146 Cholesterol 3
9 ERI147 Cholesterol 3
10 ERI149 Cholesterol 3
# βΉ 26 more rows
We can fix both the long format and multiple cholesterol issues by using tidyr::pivot_wider()
. Before we do, the last issue is that each metabolite has quite large differences in the values and ranges of data. Again, whether this is an issue depends on what we want to do, but in our research question we want to know how each metabolite influences T1D. In order to best interpret the results and compare across metabolites, we should ideally have all the metabolites with a similar range and distribution of values.
Letβs fix the first two issues first, and at the same time tidy up the names of each metabolite so they make better column names. In the doc/learning.qmd
, we can tidy up the metabolite names using mutate()
with snakecase::to_snake_case()
. Secondly, to make our dataset wider, we use pivot_wider()
. Since we also want an easy way of identifying columns that are metabolites, we will add a "metabolite_"
prefix using the argument names_prefix
. To actually fix the multiple cholesterol issue, we should look more into the data documentation or contact the authors. But for this course, we will merge the values by calculating a mean before pivoting. We do this by setting the values_fn
with mean
.
doc/learning.qmd
lipidomics_wide <- lipidomics |>
mutate(metabolite = snakecase::to_snake_case(metabolite)) |>
pivot_wider(
names_from = metabolite,
values_from = value,
values_fn = mean,
names_prefix = "metabolite_"
)
lipidomics_wide
# A tibble: 36 Γ 16
code gender age class metabolite_tms_interntal_standard
<chr> <chr> <dbl> <chr> <dbl>
1 ERI109 M 25 CT 208.
2 ERI111 M 39 CT 219.
3 ERI163 W 58 CT 57.1
4 ERI375 M 24 CT 19.2
5 ERI376 M 26 CT 35.4
6 ERI391 M 31 CT 30.4
7 ERI392 M 24 CT 21.7
8 ERI79 W 26 CT 185.
9 ERI81 M 52 CT 207.
10 ERI83 M 25 CT 322.
# βΉ 26 more rows
# βΉ 11 more variables: metabolite_cholesterol <dbl>,
# metabolite_lipid_ch_3_1 <dbl>, metabolite_lipid_ch_3_2 <dbl>,
# metabolite_lipid_ch_2 <dbl>, metabolite_fa_ch_2_ch_2_coo <dbl>,
# metabolite_pufa <dbl>, metabolite_phosphatidylethanolamine <dbl>,
# metabolite_phosphatidycholine <dbl>,
# metabolite_phospholipids <dbl>, metabolite_mufa_pufa <dbl>, β¦
Since weβre using a function-oriented workflow and since we will be using this code again later on, letβs convert both the βmetabolite to snakecaseβ and βpivot to widerβ code into their own functions. Lets start writing the function in the doc/learning.qmd
(we will later move them over into the R/functions.R
file).
doc/learning.qmd
column_values_to_snake_case <- function(data) {
data |>
dplyr::mutate(metabolite = snakecase::to_snake_case(metabolite))
}
lipidomics |>
column_values_to_snake_case()
# A tibble: 504 Γ 6
code gender age class metabolite value
<chr> <chr> <dbl> <chr> <chr> <dbl>
1 ERI109 M 25 CT tms_interntal_standard 208.
2 ERI109 M 25 CT cholesterol 19.8
3 ERI109 M 25 CT lipid_ch_3_1 44.1
4 ERI109 M 25 CT lipid_ch_3_2 147.
5 ERI109 M 25 CT cholesterol 27.2
6 ERI109 M 25 CT lipid_ch_2 587.
7 ERI109 M 25 CT fa_ch_2_ch_2_coo 31.6
8 ERI109 M 25 CT pufa 29.0
9 ERI109 M 25 CT phosphatidylethanolamine 6.78
10 ERI109 M 25 CT phosphatidycholine 41.7
# βΉ 494 more rows
This on its own should work. However, the column we want to change might not always be called metabolite
, or we might want to change it later. So, to make this function a bit more generic, we can use something called βcurly-curlyβ (it looks like {{}}
when used) and βnon-standard evaluationβ (NSE).
We can use curly-curly (combined with across()
) to apply snakecase::to_snake_case()
to columns of our choice.
doc/learning.qmd
column_values_to_snake_case <- function(data, columns) {
data |>
dplyr::mutate(dplyr::across({{ columns }}, snakecase::to_snake_case))
}
lipidomics |>
column_values_to_snake_case(metabolite)
# A tibble: 504 Γ 6
code gender age class metabolite value
<chr> <chr> <dbl> <chr> <chr> <dbl>
1 ERI109 M 25 CT tms_interntal_standard 208.
2 ERI109 M 25 CT cholesterol 19.8
3 ERI109 M 25 CT lipid_ch_3_1 44.1
4 ERI109 M 25 CT lipid_ch_3_2 147.
5 ERI109 M 25 CT cholesterol 27.2
6 ERI109 M 25 CT lipid_ch_2 587.
7 ERI109 M 25 CT fa_ch_2_ch_2_coo 31.6
8 ERI109 M 25 CT pufa 29.0
9 ERI109 M 25 CT phosphatidylethanolamine 6.78
10 ERI109 M 25 CT phosphatidycholine 41.7
# βΉ 494 more rows
Move this new function over into the R/functions.R
file, add Roxygen documentation with Ctrl-Shift-Alt-RCtrl-Shift-Alt-R or with the Palette (Ctrl-Shift-PCtrl-Shift-P, then type βroxygen commentβ), style using the Palette (Ctrl-Shift-PCtrl-Shift-P, then type βstyle fileβ), source()
the modified R/functions.R
file with Ctrl-Shift-SCtrl-Shift-S or with the Palette (Ctrl-Shift-PCtrl-Shift-P, then type βsourceβ)
R/functions.R
#' Convert a column's character values to snakecase format.
#'
#' @param data The lipidomics dataset.
#' @param columns The column you want to convert into the snakecase format.
#'
#' @return A data frame.
#'
column_values_to_snake_case <- function(data, columns) {
data |>
dplyr::mutate(dplyr::across({{ columns }}, snakecase::to_snake_case))
}
Now, replace the mutate()
call with our new function (above the pivot_wider()
code) in the doc/learning.qmd
file.
doc/learning.qmd
lipidomics_wide <- lipidomics |>
column_values_to_snake_case(metabolite) |>
pivot_wider(
names_from = metabolite,
values_from = value,
values_fn = mean,
names_prefix = "metabolite_"
)
lipidomics_wide
# A tibble: 36 Γ 16
code gender age class metabolite_tms_interntal_standard
<chr> <chr> <dbl> <chr> <dbl>
1 ERI109 M 25 CT 208.
2 ERI111 M 39 CT 219.
3 ERI163 W 58 CT 57.1
4 ERI375 M 24 CT 19.2
5 ERI376 M 26 CT 35.4
6 ERI391 M 31 CT 30.4
7 ERI392 M 24 CT 21.7
8 ERI79 W 26 CT 185.
9 ERI81 M 52 CT 207.
10 ERI83 M 25 CT 322.
# βΉ 26 more rows
# βΉ 11 more variables: metabolite_cholesterol <dbl>,
# metabolite_lipid_ch_3_1 <dbl>, metabolite_lipid_ch_3_2 <dbl>,
# metabolite_lipid_ch_2 <dbl>, metabolite_fa_ch_2_ch_2_coo <dbl>,
# metabolite_pufa <dbl>, metabolite_phosphatidylethanolamine <dbl>,
# metabolite_phosphatidycholine <dbl>,
# metabolite_phospholipids <dbl>, metabolite_mufa_pufa <dbl>, β¦
7.6 π§βπ» Exercise: Convert the pivot code into a function
Time: ~10 minutes.
Just like with the mutate()
, take the pivot_wider()
code and convert it into a new function.
- Name the new function
metabolites_to_wider
. - Include one argument in the new
function()
:data
. - Use
data |>
at the beginning, like we did with thecolumn_values_to_snake_case()
. - Use
tidyr::
before thepivot_wider()
function. - Add the Roxygen documentation with Ctrl-Shift-Alt-RCtrl-Shift-Alt-R or with the Palette (Ctrl-Shift-PCtrl-Shift-P, then type βroxygen commentβ).
- Move the function into the
R/functions.R
file. - Replace the code in the
doc/learning.qmd
file to make use of the new functions.
Click for the solution. Only click if you are struggling or are out of time.
#' Convert the metabolite long format into a wider one.
#'
#' @param data The lipidomics dataset.
#'
#' @return A wide data frame.
#'
metabolites_to_wider <- function(data) {
data |>
tidyr::pivot_wider(
names_from = metabolite,
values_from = value,
values_fn = mean,
names_prefix = "metabolite_"
)
}
7.7 Using recipes to manage transformations
Weβve used dplyr and tidyr to start fixing some of the issues with the data. But we still have the third issue: How to make the results between metabolites comparable. Thatβs where we use recipes.
The first function is recipe()
and it takes two forms: with or without a formula. Remember the model formula we mentioned previously? Well, here is where we can use it to tell recipes about the model formula we intend to use so it knows on what variables to apply the chosen transformations.
For a few reasons that will be clearer later, we wonβt ultimately use the formula form of recipe()
, but will show how it works:
recipe(class ~ metabolite_cholesterol + age + gender, data = lipidomics_wide)
The alternative approach is to set βrolesβ using update_roles()
. Instead of using a formula and letting recipe()
infer the outcome and predictors, we can explicitly select which variables are which. This has some nice features that we will use later on.
doc/learning.qmd
recipe(lipidomics_wide) |>
update_role(metabolite_cholesterol, age, gender, new_role = "predictor") |>
update_role(class, new_role = "outcome")
ββ Recipe ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ββ Inputs
Number of variables by role
outcome: 1
predictor: 3
undeclared role: 12
The next βstepβ is to select a transformation function. There are many step_*
functions (some shown below) that are available in recipes and which one you decide to use depends heavily on your data and your research question. So take your time thinking through which transformations you actually need for your analysis, rather than quickly using one or more of them.
recipes::step_log()
recipes::step_scale()
recipes::step_normalize()
recipes::step_center()
recipes::step_sqrt()
There are so many useful transformation functions available. For instance, if you often have to impute data, there are functions for that. You can check them out in the Console by typing recipes::step_impute_
then hit the Tab key to see a list of them. Or, if you have some missing values, thereβs also the recipes::step_naomit()
.
There are many transformations we could use for the lipidomics
dataset, but we will use step_normalize()
for this course. This function is useful because it makes each variable centered to zero and a value of 1 unit is translated to 1 standard deviation of the original distribution. This means we can more easily compare values between variables. We can add this to the end of the recipe:
doc/learning.qmd
recipe(lipidomics_wide) |>
update_role(metabolite_cholesterol, age, gender, new_role = "predictor") |>
update_role(class, new_role = "outcome") |>
step_normalize(starts_with("metabolite_"))
ββ Recipe ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ββ Inputs
Number of variables by role
outcome: 1
predictor: 3
undeclared role: 12
ββ Operations
β’ Centering and scaling for: starts_with("metabolite_")
Next thing to do is convert this into a function, using the same workflow weβve been using (which means this needs to be in the R/functions.R
script). Weβll also use the curly-curly again, since we might use a different metabolite later. Note, when adding all the packagename::
to each function, the starts_with()
function comes from the tidyselect package.
R/functions.R
#' A transformation recipe to pre-process the data.
#'
#' @param data The lipidomics dataset.
#' @param metabolite_variable The column of the metabolite variable.
#'
#' @return
#'
create_recipe_spec <- function(data, metabolite_variable) {
recipes::recipe(data) |>
recipes::update_role({{ metabolite_variable }}, age, gender, new_role = "predictor") |>
recipes::update_role(class, new_role = "outcome") |>
recipes::step_normalize(tidyselect::starts_with("metabolite_"))
}
And test it out:
doc/learning.qmd
recipe_specs <- lipidomics_wide |>
create_recipe_spec(metabolite_cholesterol)
recipe_specs
ββ Recipe ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ββ Inputs
Number of variables by role
outcome: 1
predictor: 3
undeclared role: 12
ββ Operations
β’ Centering and scaling for: tidyselect::starts_with("metabolite_")
Style using the Palette (Ctrl-Shift-PCtrl-Shift-P, then type βstyle fileβ), then commit the changes made to the Git history with Ctrl-Alt-MCtrl-Alt-M or with the Palette (Ctrl-Shift-PCtrl-Shift-P, then type βcommitβ).
7.8 Fitting the model by combining the recipe, model definition, and data
Weβve now defined the model we want to use and created a transformation recipes specification. Now we can start putting them together and finally fit them to the data. This is done with the workflows package.
Why use this package, rather than simply run the statistical analysis and process the data as normal? When running multiple models (like we will do in the next section) that may require different data structures, the data transformation steps have to happen right before the data is fit to the model and need to be done on exactly the data used by the model. So if we have one data frame that we run multiple models on, but the transformation happens to the whole data frame, we could end up with issues due to how the transformations were applied. The workflows package keeps track of those things for us, so we can focus on the higher level thinking rather than on the small details of running the models.
The workflows package has a few main functions for combining the recipe with the model specs, as well as several for updating an existing workflow (which might be useful if you need to run many models of slightly different types). All model workflows need to start with workflow()
, followed by two main functions: add_model()
and add_recipe()
. Can you guess what they do?
doc/learning.qmd
workflow() |>
add_model(log_reg_specs) |>
add_recipe(recipe_specs)
ββ Workflow ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
Preprocessor: Recipe
Model: logistic_reg()
ββ Preprocessor ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
1 Recipe Step
β’ step_normalize()
ββ Model βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
Logistic Regression Model Specification (classification)
Computational engine: glm
While this code is already pretty concise, letβs convert it into a function to make it simplified. Weβll use the same function-oriented workflow that weβve used before, where the function should ultimately be inside the R/functions.R
file.
R/functions.R
#' Create a workflow object of the model and transformations.
#'
#' @param model_specs The model specs
#' @param recipe_specs The recipe specs
#'
#' @return A workflow object
#'
create_model_workflow <- function(model_specs, recipe_specs) {
workflows::workflow() |>
workflows::add_model(model_specs) |>
workflows::add_recipe(recipe_specs)
}
Instead of using the previously created objects, letβs start the model creation from scratch:
doc/learning.qmd
model_workflow <- create_model_workflow(
logistic_reg() |>
set_engine("glm"),
lipidomics_wide |>
create_recipe_spec(metabolite_cholesterol)
)
model_workflow
ββ Workflow ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
Preprocessor: Recipe
Model: logistic_reg()
ββ Preprocessor ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
1 Recipe Step
β’ step_normalize()
ββ Model βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
Logistic Regression Model Specification (classification)
Computational engine: glm
Now, we can do the final thing: Fitting the data to the model with fit()
! π
doc/learning.qmd
fitted_model <- model_workflow |>
fit(lipidomics_wide)
fitted_model
ββ Workflow [trained] ββββββββββββββββββββββββββββββββββββββββββββββββββ
Preprocessor: Recipe
Model: logistic_reg()
ββ Preprocessor ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
1 Recipe Step
β’ step_normalize()
ββ Model βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
Call: stats::glm(formula = ..y ~ ., family = stats::binomial, data = data)
Coefficients:
(Intercept) genderW age
0.105293 -0.706550 0.006902
metabolite_cholesterol
1.087989
Degrees of Freedom: 35 Total (i.e. Null); 32 Residual
Null Deviance: 49.91
Residual Deviance: 42.8 AIC: 50.8
This gives us a lot of information, but what we are mostly interested in is the model estimates themselves. While this fitted_model
object contains a lot additional information inside, workflows thankfully has a function to extract the information we want. In this case, it is the extract_fit_parsnip()
function.
doc/learning.qmd
fitted_model |>
extract_fit_parsnip()
parsnip model object
Call: stats::glm(formula = ..y ~ ., family = stats::binomial, data = data)
Coefficients:
(Intercept) genderW age
0.105293 -0.706550 0.006902
metabolite_cholesterol
1.087989
Degrees of Freedom: 35 Total (i.e. Null); 32 Residual
Null Deviance: 49.91
Residual Deviance: 42.8 AIC: 50.8
To get this information in a tidier format, we use another function: tidy()
. This function comes from the broom package, which is part of the tidymodels. But we should explicitly add it to the dependencies:
Console
use_package("broom")
Then, we add the tidy()
function to our model using the |>
pipe. Since we are using a logistic regression model, we need to consider how we want the estimates to be presented, probably depending on how we want to visualize our results. If we set exponentiate = TRUE
in tidy()
, the output estimates will be odds ratios, if we set exponentiate = FALSE
, we will get the log odds ratios. Here we choose exponentiate = TRUE
:
doc/learning.qmd
fitted_model |>
extract_fit_parsnip() |>
tidy(exponentiate = TRUE)
# A tibble: 4 Γ 5
term estimate std.error statistic p.value
<chr> <dbl> <dbl> <dbl> <dbl>
1 (Intercept) 1.11 1.29 0.0817 0.935
2 genderW 0.493 0.779 -0.907 0.365
3 age 1.01 0.0377 0.183 0.855
4 metabolite_cholesterol 2.97 0.458 2.38 0.0175
We now have a data frame of our model results!
Like we did with the workflows()
code that we converted into a function, we do the same thing here: Make another function (and move it to R/functions.R
)! π
R/functions.R
#' Create a tidy output of the model results.
#'
#' @param workflow_fitted_model The model workflow object that has been fitted.
#'
#' @return A data frame.
#'
tidy_model_output <- function(workflow_fitted_model) {
workflow_fitted_model |>
workflows::extract_fit_parsnip() |>
broom::tidy(exponentiate = TRUE)
}
Replacing the code in the doc/learning.qmd
file to use the function.
doc/learning.qmd
fitted_model |>
tidy_model_output()
# A tibble: 4 Γ 5
term estimate std.error statistic p.value
<chr> <dbl> <dbl> <dbl> <dbl>
1 (Intercept) 1.11 1.29 0.0817 0.935
2 genderW 0.493 0.779 -0.907 0.365
3 age 1.01 0.0377 0.183 0.855
4 metabolite_cholesterol 2.97 0.458 2.38 0.0175
If we revise the code so it is one pipe, it would look like:
doc/learning.qmd
create_model_workflow(
logistic_reg() |>
set_engine("glm"),
lipidomics_wide |>
create_recipe_spec(metabolite_cholesterol)
) |>
fit(lipidomics_wide) |>
tidy_model_output()
# A tibble: 4 Γ 5
term estimate std.error statistic p.value
<chr> <dbl> <dbl> <dbl> <dbl>
1 (Intercept) 1.11 1.29 0.0817 0.935
2 genderW 0.493 0.779 -0.907 0.365
3 age 1.01 0.0377 0.183 0.855
4 metabolite_cholesterol 2.97 0.458 2.38 0.0175
Letβs briefly cover what these columns and values mean.
Before ending, open the Git interface and commit the changes you made with Ctrl-Alt-MCtrl-Alt-M or with the Palette (Ctrl-Shift-PCtrl-Shift-P, then type βcommitβ). Then push your changes up to GitHub.
7.9 Summary
- Create research questions that (ideally) are structured in a way to mimic how the statistical analysis will be done, preferably in a βformulaβ style like \(y = x1 + x2 + ... + error\) and in a diagram style with links connecting variables.
- Statistical analyses, while requiring some trial and error, are surprisingly structured in the workflow and steps taken. Use this structure to help guide you in completing tasks related to running analyses.
- Use parsnip functions to define the model you want to use, like
logistic_reg()
for logistic regression, and set the computational βengineβ withset_engine()
. - Use recipes functions to set up the data transformation steps necessary to effectively run the statistical analysis, like adding variable βrolesβ (outcome vs predictor) using
update_roles()
and adding transformation steps using any of the dozen differentstep_
functions. - Use workflows functions to develop an analysis
workflow()
that combines the defined model withadd_model()
, the transformation steps withadd_recipe()
, and the data withfit()
. - Use broom to
tidy()
the model output, extracted usingextract_fit_parsnip()
to get a data frame of the estimates and standard error for the variables in the model.