replication {relevance} | R Documentation |
Calculate inference for a replication study and for its comparison with the original
replication(original, replication, testlevel=getOption("testlevel"),
rlv.threshold=getOption("rlv.threshold") )
original |
list of class |
replication |
the same, for the replication study;
if empty or |
testlevel |
level of statistical tests |
rlv.threshold |
threshold of relevance; if this is a vector, the first element will be used. |
A list of class inference
and replication
containing the results of the comparison between the studies
and, as an attribute, the results for the replication.
Werner A. Stahel
Werner A. Stahel (2020). Measuring Significance and Relevance instead of p-values. Submitted; available in the documentation.
data(d.osc15Onesample)
tx <- structure(d.osc15Onesample[,c("effecto","teststatistico","no")],
names=c("effect","teststatistic","n"))
ty <- structure(d.osc15Onesample[,c("effectr","teststatisticr","nr")],
names=c("effect","teststatistic","n"))
replication(tx, ty, rlv.threshold=0.1)