Hi Catia,
As Dani notes, the extractEFAparameters function was never intended to be exported or used directly. I apologize for this being present in the package documentation, which was confusing. In fact, I've now cleaned up the documentation in the development version of the package to reduce confusion about some of the "extract" functions that were there. The readModels() function is the primary way to access any model output information.
If you want just the parameters of EFA models, you could use the convenience function get_parameters on the model list, like
efa_parameters <- get_parameters(efa_output)
Or you can just access the $parameters element of each output manually, like this:
all_params <- lapply(efa_output, function(x) x$parameters$efa)
Hope this helps! And Dani, thanks for the pull request, but I don't want to proliferate extract functions, so I won't be exported extractEFAparameters since it is the internal function used for parsing, which would be unfriendly for users.
Best,
Michael