View source: R/netgraph.discomb.R
netgraph.discomb | R Documentation |
This function generates a graph of the evidence network.
## S3 method for class 'discomb'
netgraph(x, plastic = FALSE, ...)
x |
An object of class |
plastic |
A logical indicating whether the appearance of the comparisons should be in '3D look'. |
... |
Additional arguments passed on to
|
The arguments seq
and iterate
are used internally and
cannot be specified by the user.
Guido Schwarzer guido.schwarzer@uniklinik-freiburg.de, Gerta Rücker gerta.ruecker@uniklinik-freiburg.de
discomb
, netgraph.netmeta
# Artificial dataset
#
t1 <- c("A + B", "A + C", "A" , "A" , "D", "D", "E")
t2 <- c("C" , "B" , "B + C", "A + D", "E", "F", "F")
#
mean <- c(4.1, 2.05, 0, 0, 0.1, 0.1, 0.05)
se.mean <- rep(0.1, 7)
#
study <- paste("study", c(1:4, 5, 5, 5))
#
dat <- data.frame(mean, se.mean, t1, t2, study,
stringsAsFactors = FALSE)
#
trts <- c("A", "A + B", "A + C", "A + D",
"B", "B + C", "C", "D", "E", "F")
#
comps <- LETTERS[1:6]
# Use netconnection() to display network information
#
netconnection(t1, t2, study)
dc1 <- discomb(mean, se.mean, t1, t2, study, seq = trts)
netgraph(dc1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.