Skip to content

Commit

Permalink
first skeleton for specification search
Browse files Browse the repository at this point in the history
  • Loading branch information
FloSchuberth committed Feb 5, 2025
1 parent bc4c246 commit 34ef5b5
Show file tree
Hide file tree
Showing 5 changed files with 86 additions and 0 deletions.
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ export(csem)
export(doIPMA)
export(doNonlinearEffectsAnalysis)
export(doRedundancyAnalysis)
export(doSpecificationSearch)
export(exportToExcel)
export(fit)
export(getConstructScores)
Expand Down
21 changes: 21 additions & 0 deletions R/helper_doSpecificationSearch.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#' Internal: perform GA
#'
#' Transforms a p-value into stars.
#'
#'
#' @usage get_significance_stars(
#' X
#' )
#'
#' @inheritParams csem_arguments
#'
#' @return Character string. A p-value transformed into a star.
#'
#' @keywords internal
#'
ga = function(
X
){

X
}
20 changes: 20 additions & 0 deletions R/postestimate_doSpecificationSearch.R
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
#' Specification search
#'
#' \lifecycle{experimental}
#'
#' The `doSpecificationSearch()`
#'
#' @usage doSpecificationSearch(
#' .object = NULL)
#'
#' @inheritParams csem_arguments
#'
#'
#' @return List
#'
#' @seealso [csem()], [cSEMResults], \link[DiagrammeR]{grViz}
#'
#'
#' @export


doSpecificationSearch <- function(.object = NULL){


Expand Down
24 changes: 24 additions & 0 deletions man/doSpecificationSearch.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 20 additions & 0 deletions man/ga.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 34ef5b5

Please sign in to comment.