| d.osc15 {relevance} | R Documentation |
Data from the OSC15 replication study
Description
The data of the famous replication study of the Open Science Collaboration published in 2015
Usage
data("d.osc15")
Format
d.osc15:
The data frame of OSC15, with 100 observations on 149 variables, of
which only the most important are described here.
For a description of all variables, see the repository
https://osf.io/jrxtm/
Study.NumIdentification number of the study
EffSize.O, EffSize.Reffect size as defined by OSC15, original paper and replication, respectively
Tst.O, Tst.Rtest statistic, original and replication
N.O, N.Rnumber of observations, original and replication
Source
Data repository https://osf.io/jrxtm/
References
Open Science Collaboration (2015). Estimating the reproducibility of psychological science. Science 349, 943-952
See Also
Examples
data(d.osc15)
## plot effect sizes of replication against original
## row 9 has an erroneous EffSize.R, and there are 4 missing effect sizes
dd <- na.omit(d.osc15[-9,c("EffSize.O","EffSize.R")])
## change sign for negative original effects
dd[dd$EffSize.O<0,] <- -dd[dd$EffSize.O<0,]
plot(dd)
abline(h=0)
[Package relevance version 2.1 Index]