Skip to content
Back to formatted view

Raw Message

Message-ID: <AE81DF28-F975-40EB-B238-3B040D3C5F92@uniklinik-freiburg.de>
Date: 2023-06-20T16:25:07Z
From: Guido Schwarzer
Subject: [R-meta] Modifying forest plots while using "RevMan5" format
In-Reply-To: <CAJdmLx34GSPujWzp5j9FuuVJEe6foppMM3iYKQ9zEBwffQKU-A@mail.gmail.com>

Hi Britt,

I just added two new arguments 'digits.n' and 'digits.event' to the development version of forest.meta() on GitHub (https://github.com/guido-s/meta). Furthermore, argument 'just' now overrules argument 'layout = "RevMan5"'.

install.packages("remotes")
remotes::install_github("guido-s/meta", ref = "develop")
library("meta")
m1 <- metabin(1:3 + 0.3333, 11:13 + runif(3, 0.01, 0.1), 2:4 + 0.6666, 11:13 + runif(3, 0.01, 0.1))
forest(m1, digits.n = 2, digits.event = 3, layout = "RevMan5", just = "r")

Best,
Guido