Learn R Programming

plspm (version 0.4.1)

unidim: Unidimensionality of blocks

Description

Compute unidimensionality indices (a.k.a. Composite Reliability indices)

Usage

unidim(Data, blocks = NULL)

Arguments

Data
matrix or data frame with variables
blocks
optional list with vectors indicating the variables in each block

Value

  • A data frame with the following columns:
  • Blockname of block
  • MVsnumber of manifest variables in each block
  • C.alphaCronbach's alpha
  • DG.rhoDillon-Goldstein rho
  • eig.1stFirst eigenvalue
  • eig.2ndSecond eigenvalue

See Also

alpha, rho

Examples

Run this code
# load dataset satisfaction
 data(satisfaction)

 # blocks Image and Expectations
 ima_expe = list(Image=1:5, Expec=6:10)

 # compute unidimensionality indices
 unidim(satisfaction, ima_expe)

Run the code above in your browser using DataLab