findPossibleFactorCor: Find the appropriate position for freely estimated...

Description Usage Arguments Value Author(s) See Also Examples

View source: R/find.R

Description

Find the appropriate position for freely estimated correlation (or covariance) given a regression coefficient matrix. The appropriate position is the pair of variables that are not causally related.

Usage

1

Arguments

beta

The regression coefficient in path analysis.

Value

The symmetric matrix containing the appropriate position for freely estimated correlation.

Author(s)

Sunthud Pornprasertmanit (psunthud@gmail.com)

See Also

Examples

1
2
3
4
5
6
7
path <- matrix(0, 9, 9)
path[4, 1] <- path[7, 4] <- NA
path[5, 2] <- path[8, 5] <- NA
path[6, 3] <- path[9, 6] <- NA
path[5, 1] <- path[8, 4] <- NA
path[6, 2] <- path[9, 5] <- NA
findPossibleFactorCor(path)

simsem documentation built on March 29, 2021, 1:07 a.m.