to.wide | R Documentation |
Function to convert data given in long format to a wide format.
to.wide(data, study, grp, ref, grpvars, postfix=c(".1",".2"),
addid=TRUE, addcomp=TRUE, adddesign=TRUE, minlen=2,
var.names=c("id","comp","design"))
data |
a data frame in long format. |
study |
either the name (given as a character string) or the position (given as a single number) of the study variable in the data frame. |
grp |
either the name (given as a character string) or the position (given as a single number) of the group variable in the data frame. |
ref |
optional character string to specify the reference group (must be one of the groups in the group variable). If not given, the most frequently occurring group is used as the reference group. |
grpvars |
either the names (given as a character vector) or the positions (given as a numeric vector) of the group-level variables. |
postfix |
a character string of length 2 giving the affix that is placed after the names of the group-level variables for the first and second group. |
addid |
logical to specify whether a row id variable should be added to the data frame (the default is |
addcomp |
logical to specify whether a comparison id variable should be added to the data frame (the default is |
adddesign |
logical to specify whether a design id variable should be added to the data frame (the default is |
minlen |
integer to specify the minimum length of the shortened group names for the comparison and design id variables (the default is 2). |
var.names |
character vector with three elements to specify the name of the id, comparison, and design variables (the defaults are |
A meta-analytic dataset may be structured in a ‘long’ format, where each row in the dataset corresponds to a particular study group (e.g., treatment arm). Using this function, such a dataset can be restructured into a ‘wide’ format, where each group within a study is contrasted against a particular reference group.
The study
and group
arguments are used to specify the study and group variables in the dataset (either as character strings or as numbers indicating the column positions of these variables in the dataset). Optional argument ref
is used to specify the reference group (this must be one of the groups in the group
variable). Argument grpvars
is used to specify (either as a character vector or by giving the column positions) of those variables in the dataset that correspond to group-level outcomes (the remaining variables are treated as study-level outcomes).
The dataset is restructured so that a two-group study will yield a single row in the restructured dataset, contrasting the first group against the second/reference group. For studies with more than two groups (often called ‘multiarm’ or ‘multitreatment’ studies in the medical literature), the reference group is repeated as many times as needed (so a three-group study would yield two rows in the restructured dataset, contrasting two groups against a common reference group).
If a study does not include the reference group, then another group from the study will be used as the reference group. This group is chosen based on the factor levels of the grp
variable (i.e., the last level that occurs in the study becomes the reference group).
To distinguish the names of the group-level outcome variables for the two first and second group in the restructured dataset, the strings given for the postfix
argument are placed after the respective variable names.
If requested, row id, comparison id, and design id variables are added to the restructured dataset. The row id is simply a unique number for each row in the dataset. The comparison id variable indicates which two groups have been compared against each other). The design id variable indicates which groups were included in a particular study. The group names are shortened for the comparison and design variables (to at least minlen
; the actual length might be longer to ensure uniqueness of the group names).
The examples below illustrate the use of this function.
A data frame with rows contrasting groups against a reference group and an appropriate number of columns (depending on the number of group-level outcome variables).
Wolfgang Viechtbauer wvb@metafor-project.org https://www.metafor-project.org
Viechtbauer, W. (2010). Conducting meta-analyses in R with the metafor package. Journal of Statistical Software, 36(3), 1–48. https://doi.org/10.18637/jss.v036.i03
contrmat
for a function to construct a contrast matrix based on a dataset in wide format.
dat.hasselblad1998
, dat.lopez2019
, dat.obrien2003
, dat.pagliaro1992
, dat.senn2013
for illustrative examples.
### data in long format
dat <- dat.senn2013
dat <- dat[c(1,4,3,2,5,6)]
dat
### restructure to wide format
dat <- to.wide(dat, study="study", grp="treatment", ref="placebo", grpvars=4:6)
dat
### data in long format
dat <- dat.hasselblad1998
dat
### restructure to wide format
dat <- to.wide(dat, study="study", grp="trt", ref="no_contact", grpvars=6:7)
dat
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.