csSensitivity {condir} | R Documentation |
Sensitivity analysis for the Bayes Factors of csCompare
results
Description
Perform a sensitivity analysis for the Bayes factors computed
with the csCompare
results
Usage
csSensitivity(
cs1,
cs2,
group = NULL,
data = NULL,
alternative = "two.sided",
conf.level = 0.95,
mu = 0,
rscaleSens = c(0.707, 1, 1.41),
out.thres = 3
)
Arguments
cs1 |
a numeric vector of values. If the |
cs2 |
a numeric vector of values. If the |
group |
column index or name that contain the group data. See
|
data |
numeric matrix or data frame that contains the relevant data. |
alternative |
a character string for the specification of
the alternative hypothesis. Possible values: |
conf.level |
Interval's confidence level. |
mu |
a numeric value for the mean value or mean difference. |
rscaleSens |
the scale factor for the prior used in the Bayesian t.test |
out.thres |
The threshold for detecting outliers (default is 3). If set
to 0, no outliers analysis will be performed. See |
Details
csCompare
performs both a student t-test (using the
stats::t.test
function) and a Bayesian t-test (using the
BayesFactor::ttest.tstat
). In case group
is not defined,
paired-samples t-tests are run. In case the group
is
defined, then the csCompare first computes difference scores between the cs1
and the cs2
(i.e., cs1 - cs2).
In case the group argument is defined
but, after removal of NA's (stats::na.omit
), only one group
is defined, a paired samples t-test is run.
Value
The function returns a data frame with the results of the student t-test and the Bayesian t-test.
References
Krypotos, A. M., Klugkist, I., & Engelhard, I. M. (2017). Bayesian hypothesis testing for human threat conditioning research: An introduction and the condir R package. European Journal of Psychotraumatology, 8.
See Also
csCompare
, t.test
,
ttest.tstat
Examples
set.seed(1000)
csSensitivity(cs1 = rnorm(n = 100, mean = 10),
cs2 = rnorm(n = 100, mean = 9))