Learn R Programming

SemNetCleaner (version 1.0.0)

equate.multi: Equate Multiple Groups

Description

A function to apply equate to multiple response matrices

Usage

equate.multi(...)

Arguments

...

A list. A list of response matrices to be equated

Value

This function returns a list containing the equated binary response matrices in the order they were input. The response matrices are labeled (1, 2, ..., n) in the order in which they are input.

Examples

Run this code
# NOT RUN {
#finalize rmatA
finalCmat <- finalize(convmat)

#finalize rmatB
finalRmat <- finalize(rmat)

#finalize rmatC
finalYmat <- finalize(rmat)

#equate rmatA and rmatB
eq <- equate.multi(finalCmat,finalRmat,finalYmat)

#obtain respective equated response matrices
eqCmat <- eq$dataset1
eqRmat <- eq$dataset2
eqYmat <- eq$dataset3

# }

Run the code above in your browser using DataLab