Learn R Programming

[](https://app.codecov.io/gh/juliuspfadt/Bayesrel

Installation

You can install the released version of Bayesrel from CRAN with:

install.packages("Bayesrel")

or install the latest version of Bayesrel from [github] (https://github.com) with the help of the remotes-package:

remotes::install_github("juliuspfadt/Bayesrel")

Example

Unidimensional data

This is a basic example which shows you how to compute alpha, lambda2, the glb, and omega for an example real data set. The output includes both Bayesian and frequentist estimates.

library(Bayesrel)
## basic example code
## load example data set from the package
## run the main reliability function
res <- strel(data = asrm)
## get a full result output
summary(res)
## return the probability that coefficient alpha is larger than .70
pStrel(x = res, estimate = "alpha", low.bound = .70)

## get the posterior median of, e.g., alpha instead of the mean:
median(res$Bayes$samp$Bayes_alpha)

Multidimensional data

Bayesian estimation

Second-order model

This is a basic example which shows you how to compute omega_t and omega_h for an example real data set. The data follow a second-order factor model with no crossloadings:

library(Bayesrel)
## basic example code
## run the Bayesian omegas, specify 5 group factors
res <- bomegas(data = upps, n.factors = 5, missing = "impute")
## get a full result output
summary(res)
## return the probability that coefficient omega_t is larger than .70
pOmegas(x = res, cutoff.t = .70)
## plot posterior predictive check for the higher-order (second-order) factor model
multiFit(x = res, data = upps)

In the example above we implicitly assumed that the items of the data set were ordered so that, with 5 group factors, the first four items load on the first factor, items 5-8 load on the second factor and so on. When the data is not organized this way and/or the items cannot be distributed among the factors evenly, one can specify a model syntax relating the items to the group factors in lavaan style. The item names need to equal the variable names in the data:

model <- "
  f1 =~ U17_r + U22_r + U29_r + U34_r
  f2 =~ U4 + U14 + U19 + U27
  f3 =~ U6 + U16 + U28 + U48
  f4 =~ U23_r + U31_r + U36_r + U46_r
  f5 =~ U10_r + U20_r + U35_r + U52_r
  "
res <- bomegas(data = upps, n.factors = 5, model = model, missing = "impute")

Crossloadings

If crossloadings are to be specified, you need a model syntax file to pass to the bomegas function. For instance, assume that item U29_r and U34_r load on f3 and f4, respectively.

model <- "
  f1 =~ U17_r + U22_r + U29_r + U34_r
  f2 =~ U4 + U14 + U19 + U27
  f3 =~ U6 + U16 + U28 + U48 + U29_r
  f4 =~ U23_r + U31_r + U36_r + U46_r + U34_r
  f5 =~ U10_r + U20_r + U35_r + U52_r
  "
res <- bomegas(data = upps, n.factors = 5, model = model, missing = "impute")

Bi-factor and correlated factor model

The necessary code to infer omega_t and omega_h from a bi-factor model is analogue to the second-order model, except that the model.type changes from the default second-order to bi-factor. Note, that crossloadings are not permitted in the bi-factor model at this point. If model.type = "correlated" the correlated factor model is fit to the data. Crosslaodings are allowed. Only omega_t may be estimated. The remaining code stays the same as in the examples above. Which factor model is appropriate for the data is up to theoretical considerations and model fit.

Frequentist estimation

The frequentist estimation roughly follows the same steps as the Bayesian one. For instance, with the correlated factor model:

res <- omegasCFA(data = upps, n.factors = 5, model.type = "correlated")
res

Copy Link

Version

Install

install.packages('Bayesrel')

Monthly Downloads

752

Version

0.7.8

License

GPL-3

Issues

Pull Requests

Stars

Forks

Maintainer

Julius Pfadt

Last Published

March 24th, 2025

Functions in Bayesrel (0.7.8)

p_strel-deprecated

prior and posterior probability of estimate being bigger than threshold
strel

Estimate single test reliability coefficients for unidimensional scales
upps

20-item questionnaire data from Lozano et al. (2018)
secoFit-deprecated

model fit for the second-order factor model,
seco_fit-deprecated

model fit for the second-order factor model,
omegaFit

graphical posterior predictive check for the 1-factor omega model, based on covariance matrix eigenvalues
cavalini

8-Item Questionnaire Data from Cavalini (1992)
omegasCFA

Estimate reliability estimates for multidimensional scales in the frequentist framework
pOmegas

prior and posterior probability of omega_t and omega_h being larger than thresholds
bomegas

Estimate Bayesian reliability estimates for multidimensional scales following common factor models
multiFit

model fit for the second-order and bi-factor model,
pStrel

prior and posterior probability of estimate being bigger than threshold
Bayesrel-deprecated

Deprecated functions in package Bayesrel.
asrm

5-Item questionnaire data from Nicolai (2018)
omega_fit-deprecated

graphical posterior predictive check for the 1-factor omega model, based on covariance matrix eigenvalues
asrm_mis

5-Item questionnaire data from Nicolai (2018) with 10 % missings
p_omegas-deprecated

prior and posterior probability of omega_t and omega_h being bigger than thresholds