Description Usage Arguments Value Author(s) References See Also Examples
The sceptical p-value is computed based on the z-values of the original and the replication study and the corresponding variance ratio. If specified, a recalibration is applied.
1 | pSceptical(zo, zr, c, alternative = "one.sided", type = "golden")
|
zo |
A vector of z-values from original studies. |
zr |
A vector of z-values from replication studies. |
c |
A vector of variance ratios of the original and replication effect estimates. This is usually the ratio of the sample size of the replication study to the sample size of the original study. |
alternative |
Either |
type |
Type of recalibration. Can be either |
The sceptical p-value.
Leonhard Held
Held, L. (2020). A new standard for the analysis and design of replication studies (with discussion). Journal of the Royal Statistical Society: Series A (Statistics in Society). 183(2):431 - 448. https://doi.org/10.1111/rssa.12493
Held, L., Micheloud, C. & Pawel, S. (2020). The assessment of replication success based on relative effect size. https://arxiv.org/abs/2009.07782
sampleSizeReplicationSuccess
, powerReplicationSuccess
,
levelSceptical
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ## no recalibration (type = "nominal") as in Held (2020)
pSceptical(zo = p2z(0.01), zr = p2z(0.02), c = 2, alternative = "one.sided",
type = "nominal")
## recalibration with golden level as in Held, Micheloud, Pawel (2020)
pSceptical(zo = p2z(0.01), zr = p2z(0.02), c = 2, alternative = "one.sided",
type = "golden")
## two-sided p-values 0.01 and 0.02, relative sample size 2
pSceptical(zo = p2z(0.01), zr = p2z(0.02), c = 2, alternative = "one.sided")
## reverse the studies
pSceptical(zo = p2z(0.02), zr = p2z(0.01), c = 1/2, alternative = "one.sided")
## both p-values 0.01, relative sample size 2
pSceptical(zo = p2z(0.01), zr = p2z(0.01), c = 2, alternative = "two.sided")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.