pIntrinsic {ReplicationSuccess} | R Documentation |
The P-value for intrinsic credibility is computed.
pIntrinsic(p=t2p(t, alternative=alternative), t=NULL, alternative="two.sided", type="Held")
p |
a vector of P-values, is calculated from |
t |
a vector of t-values, default is |
alternative |
either |
type |
Type of intrinsic p-value. Default is |
The P-value for intrinsic credibility.
Leonhard Held
Held, L. (2019). The assessment of intrinsic credibility and a new argument for p < 0.005. Royal Society Open Science, 6:181534. https://dx.doi.org/10.1098/rsos.181534
Matthews, R. A. J. (2018). Beyond 'significance': principles and practice of the analysis of credibility. Royal Society Open Science, 5:171047. https://doi.org/10.1098/rsos.171047
p <- c(0.005, 0.01, 0.05) t <- c(2,3,4) pIntrinsic(p) pIntrinsic(p, type="Matthews") pIntrinsic(t=t) pIntrinsic(t=t, type="Matthews") pIntrinsic(p, alternative="one.sided") pIntrinsic(p, alternative="one.sided", type="Matthews")