tests/testthat/demo_realdata.R

# library(EFAfactors)

set.seed(222)
data(data.bfi)

response <- as.matrix(data.bfi[, 1:25]) ## loading data
response <- as.matrix(na.omit(response)) ## Remove samples with NA/missing values

## Transform the scores of reverse-scored items to normal scoring
response[, c(1, 9, 10, 11, 12, 22, 25)] <- 6 - response[, c(1, 9, 10, 11, 12, 22, 25)] + 1

# CD.obj <- CD(response)
# FF.obj <- FF(response)

# Hull.obj <- Hull(response)
# DNN.obj <- DNN_predictor(response)
# EKC.obj <- EKC(response)
# PA.obj <- PA(response, fa = "fa", nfact = 1)
#
# CDF.obj <- CDF(response)
#
# methods.names <- c("Hull", "CD", "PA", "EKC", "FF", "CDF","DNN")
# retained.factors <- c(Hull.obj$nfact, CD.obj$nfact, PA.obj$nfact, EKC.obj$nfact, FF.obj$nfact, CDF.obj$nfact, DNN.obj$nfact)
# names(retained.factors) <- methods.names
# print(retained.factors)
#
# EFAvote.obj <- EFAvote(votes = retained.factors)
# plot(EFAvote.obj)

Try the EFAfactors package in your browser

Any scripts or data that you put into this service are public.

EFAfactors documentation built on Sept. 30, 2024, 1:06 a.m.