View source: R/subset.pairwise.R
subset.pairwise | R Documentation |
The subset
method returns a subset of a pairwise object.
## S3 method for class 'pairwise'
subset(x, subset, ...)
x |
An object of class |
subset |
A logical expression indicating elements or rows to keep: missing values are taken as false. |
... |
Additional arguments. |
A pairwise object is returned.
Guido Schwarzer guido.schwarzer@uniklinik-freiburg.de
pairwise
# Transform data from arm-based format to contrast-based format
data(Franchini2012)
p1 <- pairwise(list(Treatment1, Treatment2, Treatment3),
n = list(n1, n2, n3),
mean = list(y1, y2, y3), sd = list(sd1, sd2, sd3),
data = Franchini2012, studlab = Study)
p1[, 1:5]
# Subset without Lieberman studies
subset(p1, !grepl("Lieberman", studlab))[, 1:5]
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.