1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
\name{dat.lee2004}
\docType{data}
\alias{dat.lee2004}
\title{Studies on Acupoint P6 Stimulation for Preventing Nausea}
\description{Results from studies examining the effectiveness of wrist acupuncture point P6 stimulation for preventing postoperative nausea.}
\usage{
dat.lee2004
}
\format{The data frame contains the following columns:
\tabular{lll}{
\bold{id} \tab \code{numeric} \tab trial id number \cr
\bold{study} \tab \code{character} \tab first author \cr
\bold{year} \tab \code{numeric} \tab study year \cr
\bold{ai} \tab \code{numeric} \tab number of patients experiencing nausea in the treatment group \cr
\bold{n1i} \tab \code{numeric} \tab total number of patients in treatment group \cr
\bold{ci} \tab \code{numeric} \tab number of patients experiencing nausea in the sham group \cr
\bold{n2i} \tab \code{numeric} \tab total number of patients in the sham group
}
}
\details{
Postoperative nausea and vomiting are common complications following surgery and anaesthesia. As an alternative to drug therapy, acupuncture has been studied as a potential treatment in several trials. The dataset contains the results from 16 clinical trials examining the effectiveness of wrist acupuncture point P6 stimulation for preventing postoperative nausea.
}
\source{
Lee, A., & Done, M. L. (2004). Stimulation of the wrist acupuncture point P6 for preventing postoperative nausea and vomiting. \emph{Cochrane Database of Systematic Reviews}, \bold{3}, CD003281. \verb{https://doi.org/10.1002/14651858.CD003281.pub2}
}
\author{
Wolfgang Viechtbauer, \email{wvb@metafor-project.org}, \url{https://www.metafor-project.org}
}
\examples{
### copy data into 'dat' and examine data
dat <- dat.lee2004
dat
\dontrun{
### load metafor package
library(metafor)
### meta-analysis based on log risk ratios
res <- rma(measure="RR", ai=ai, n1i=n1i, ci=ci, n2i=n2i, data=dat)
res
predict(res, transf=exp, digits=2)
}
}
\keyword{datasets}
\concept{medicine}
\concept{alternative medicine}
\concept{risk ratios}
\section{Concepts}{
medicine, alternative medicine, risk ratios
}
|