report.BFBayesFactor {report} | R Documentation |
Reporting BFBayesFactor
objects from the BayesFactor
package
Description
Interpretation of the Bayes factor output from the BayesFactor
package.
Usage
## S3 method for class 'BFBayesFactor'
report(x, h0 = "H0", h1 = "H1", ...)
## S3 method for class 'BFBayesFactor'
report_statistics(x, table = NULL, ...)
Arguments
x |
An object of class |
h0 , h1 |
Names of the null and alternative hypotheses. |
... |
Other arguments to be passed to effectsize::interpret_bf and insight::format_bf. |
table |
A |
Examples
library(BayesFactor)
rez <- BayesFactor::ttestBF(iris$Sepal.Width, iris$Sepal.Length)
report_statistics(rez, exact = TRUE) # Print exact BF
report(rez, h0 = "the null hypothesis", h1 = "the alternative")
rez <- BayesFactor::correlationBF(iris$Sepal.Width, iris$Sepal.Length)
report(rez)
[Package report version 0.5.9 Index]