View source: R/prepare.functions.R
| add_index | R Documentation | 
Adds follow-up time (fups, fupcount) and arm (arms, narms) indices to a dataset.
add_index(data.ab, reference = 1)
| data.ab | A data frame of arm-level data in "long" format containing the columns: 
 | 
| reference | A number or character (depending on the format of  | 
A data frame similar to data.ab but with additional columns:
arm Arm identifiers coded for each study
fupcount Follow-up identifiers coded for each study
fups The total number of follow-up measurements in each study
narm The total number of arms in each study
If treatment or class are non-numeric or non-sequential (i.e. with missing numeric codes),
treatments/classes in the returned data frame will be numbered and recoded to enforce sequential
numbering (a warning will be shown stating this).
# Add indices to osteoarthritis pain dataset
data.ab <- add_index(osteopain)
# Add indices to dataset using different network reference treatment
data.ab <- add_index(osteopain, reference=3)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.