Skip to content

Commit

Permalink
add varCovData to check Errors
Browse files Browse the repository at this point in the history
  • Loading branch information
juliuspfadt committed Nov 25, 2024
1 parent ae2a1f2 commit eab119f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion R/exploratoryfactoranalysis.R
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ exploratoryFactorAnalysisInternal <- function(jaspResults, dataset, options, ...
)

if (options[["dataType"]] == "raw") {
error <- .hasErrors(dataset = dataset, type = c("infinity", "variance"), custom = customChecksEFA,
error <- .hasErrors(dataset = dataset, type = c("infinity", "variance", "varCovData"), custom = customChecksEFA,
exitAnalysisIfErrors = TRUE)
}

Expand Down
2 changes: 1 addition & 1 deletion R/principalcomponentanalysis.R
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ principalComponentAnalysisInternal <- function(jaspResults, dataset, options, ..
)

if (options[["dataType"]] == "raw") {
error <- .hasErrors(dataset = dataset, type = c("infinity", "variance"), custom = customChecksPCAEFA,
error <- .hasErrors(dataset = dataset, type = c("infinity", "variance", "varCovData"), custom = customChecksPCAEFA,
exitAnalysisIfErrors = TRUE)
}

Expand Down

0 comments on commit eab119f

Please sign in to comment.