names.fbst {fbst}R Documentation

names.fbst

Description

Plots the names of the objects stored in the data object of a Full Bayesian Significance Test.

Usage

## S3 method for class 'fbst'
names(x)

Arguments

x

An Object of class "fbst".

Details

Plots the names of the objects stored in the data object of a Full Bayesian Significance Test.

Value

Returns a list of names.

Author(s)

Riko Kelter

References

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

Examples

set.seed(57)
grp1=rnorm(50,0,1.5)
grp2=rnorm(50,0.8,3.2)

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

# flat reference function
res = fbst(posteriorDensityDraws = p, nullHypothesisValue = 0, 
dimensionTheta = 2, dimensionNullset = 1)
names(res)

[Package fbst version 2.2 Index]