Skip to content

Commit

Permalink
Update wrappers (#219)
Browse files Browse the repository at this point in the history
  • Loading branch information
boutinb authored May 23, 2024
1 parent 12e6dfe commit e635324
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions R/confirmatoryfactoranalysisWrapper.R
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

confirmatoryFactorAnalysis <- function(
data = NULL,
version = "0.18.2",
version = "0.19",
ave = FALSE,
bartlettTest = FALSE,
bootstrapSamples = 1000,
Expand Down Expand Up @@ -82,4 +82,4 @@ confirmatoryFactorAnalysis <- function(
if ((name %in% optionsWithFormula) && inherits(options[[name]], "formula")) options[[name]] = jaspBase::jaspFormula(options[[name]], data) }

return(jaspBase::runWrappedAnalysis("jaspFactor::confirmatoryFactorAnalysis", data, options, version))
}
}
4 changes: 2 additions & 2 deletions R/exploratoryfactoranalysisWrapper.R
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

exploratoryFactorAnalysis <- function(
data = NULL,
version = "0.18.2",
version = "0.19",
analysisBasedOn = "correlationMatrix",
bartlettTest = FALSE,
eigenValuesAbove = 1,
Expand Down Expand Up @@ -63,4 +63,4 @@ exploratoryFactorAnalysis <- function(
if ((name %in% optionsWithFormula) && inherits(options[[name]], "formula")) options[[name]] = jaspBase::jaspFormula(options[[name]], data) }

return(jaspBase::runWrappedAnalysis("jaspFactor::exploratoryFactorAnalysis", data, options, version))
}
}
4 changes: 2 additions & 2 deletions R/principalcomponentanalysisWrapper.R
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

principalComponentAnalysis <- function(
data = NULL,
version = "0.18.2",
version = "0.19",
addComponentScores = FALSE,
analysisBasedOn = "correlationMatrix",
bartlettTest = FALSE,
Expand Down Expand Up @@ -62,4 +62,4 @@ principalComponentAnalysis <- function(
if ((name %in% optionsWithFormula) && inherits(options[[name]], "formula")) options[[name]] = jaspBase::jaspFormula(options[[name]], data) }

return(jaspBase::runWrappedAnalysis("jaspFactor::principalComponentAnalysis", data, options, version))
}
}

0 comments on commit e635324

Please sign in to comment.