Learn R Programming

fbst (version 2.2)

summary.fbet: summary.fbet

Description

Prints the results of a Full Bayesian Evidence Test.

Usage

# S3 method for fbet
summary(object, ...)

Value

Prints the results onto the console.

Arguments

object

An Object of class "fbet".

...

Additional parameters, see "summary(object, ...)".

Author

Riko Kelter

Details

Summarises the results of a Full Bayesian Evidence Test.

References

For a details, see: https://arxiv.org/abs/2001.10577 and https://arxiv.org/pdf/2001.10577.pdf.

Examples

Run this code
set.seed(57)
grp1=rnorm(50,0,1.5)
grp2=rnorm(50,0.3,3.2)

p = as.vector(BayesFactor::ttestBF(x=grp1,y=grp2, 
  posterior = TRUE, iterations = 3000, 
  rscale = "medium")[,4])

# flat reference function
res = fbet(p, interval = c(-0.1,0.1), nu=1, FUN=NULL, par=NULL)
summary(res)

Run the code above in your browser using DataLab