powered by
This function prepares the follow-up (FU) variable for analysis by giving it a default name (`fu`) and factorising
.prep_fu(df, name = NULL, levels = NULL)
A data frame with the follow-up variable renamed as "fu" and factorised.
A data frame.
Column name in the data frame that contains follow-up information.
Levels to factorise the FU variable into.
df <- data.frame(id = c(1, 1, 2, 2), visit = c("baseline", "follow-up", "baseline", "follow-up")) .prep_fu(df = df, name = "visit", levels = c("baseline", "follow-up"))
Run the code above in your browser using DataLab