View source: R/report.BFBayesFactor.R
report.BFBayesFactor | R Documentation |
BFBayesFactor
objects from the BayesFactor
packageInterpretation of the Bayes factor output from the BayesFactor
package.
## S3 method for class 'BFBayesFactor'
report(x, h0 = "H0", h1 = "H1", ...)
## S3 method for class 'BFBayesFactor'
report_statistics(x, table = NULL, ...)
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 |
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.