Skip to contents

Plot method showing a summarized output of the efa_average() function

Usage

# S3 method for class 'efa_average'
plot(x, ...)

Arguments

x

list. An output from the efa_average() function.

...

not used.

Value

A ggplot object showing, for each indicator and factor, the minimum, maximum, and average (mean or median) loading across the averaged solutions. Each panel carries a point at the average, a bar spanning the minimum to the maximum with a tick at each endpoint, and a grey band marking the loadings that fall below the salience threshold; the caption names the four marks.

Examples

# \donttest{
EFA_aver <- efa_average(test_models$baseline$cormat, n_factors = 3, N = 500)
#>  Extracting data
#>  Extracting data [24ms]
#> 
#>  Reordering factors
#>  Reordering factors [25ms]
#> 
#>  Averaging data
#>  Averaging data [21ms]
#> 
plot(EFA_aver)

# }