Last chance! 50% off unlimited learning
Sale ends in
dat.co2
numeric
observation number
paper numeric
paper number
units numeric
paper number
genus character
genus name
species character
species name
function character
plant functional group
co2.ambi numeric
ambient CO2 level (control group)
co2.elev numeric
elevated CO2 level (treatment group)
units character
units for CO2 exposure levels
time numeric
maximum length of time (days) of CO2 exposure
pot character
growing method (see below)
method character
CO2 exposure facility (see below)
stock character
planting stock code
xtrt character
interacting treatment code (see below)
level character
interacting treatment level codes (see below)
m1i numeric
mean plant mass under elevated CO2 level (treatment group)
sd1i numeric
standard deviation of plant mass underelevated CO2 level (treatment group)
n1i numeric
number of observations under elevated CO2 level (treatment group)
m2i numeric
mean plant mass under ambient CO2 level (control group)
sd2i numeric
standard deviation of plant mass under ambient CO2 level (control group)
n2i numeric
number of observations under ambient CO2 level (control group)
}co2.ambi
and co2.elev
variables indicate the CO2 levels in the control and treatment groups, respectively (with the units
variable specifying the units for the CO2 exposure levels). Many of the studies also varried one or more additional environmental variables (defined by the xtrt
and level
variables):
CONTROL
,HIGH
, orLOW
level)LOW
light level)LOW
light and soil fertility level)WW
orDRT
level)HIGH
orLOW
level)HIGH
orLOW
level)HIGH
orLOW
level)time
), growing method (pot
: number = pot size in liters; GRND
= plants rooted in ground; HYDRO
= solution or aeroponic culture), CO2 exposure facility (method
: GC
= growth chamber; GH
= greenhouse; OTC
= field-based open-top chamber), and planting stock (stock
: SEED
= plants started from seeds; SAP
= plants started from cuttings). The goal of the meta-analysis was to examine the effects of elevated CO2 levels on plant physiology and growth and the interacting effects of the environmental (and design) variables.### load CO2 data
data(dat.co2)
### calculate log ratio of means and corresponding sampling variances
dat <- escalc(m1i=m1i, sd1i=sd1i, n1i=n1i, m2i=m2i, sd2i=sd2i, n2i=n2i,
measure="ROM", data=dat.co2, append=TRUE)
dat
### meta-analysis of log ratio of means using a random-effects model
res <- rma(yi, vi, method="DL", data=dat)
res
### average ratio of means with 95\% CI
predict(res, transf=exp, digits=2)
### meta-analysis for plants grown under nutrient stress
res <- rma(yi, vi, method="DL", data=dat, subset=(xtrt=="FERT" & level=="LOW"))
predict(res, transf=exp, digits=2)
### meta-analysis for plants grown under low light conditions
res <- rma(yi, vi, method="DL", data=dat, subset=(xtrt=="LIGHT" & level=="LOW"))
predict(res, transf=exp, digits=2)
Run the code above in your browser using DataLab