Skip to content

Commit

Permalink
Rename procModelGraphSingleModel to .procModelGraphSingleModel
Browse files Browse the repository at this point in the history
  • Loading branch information
maltelueken committed Oct 17, 2023
1 parent 1063685 commit 67b1575
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/classicProcess.R
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ ClassicProcess <- function(jaspResults, dataset = NULL, options) {
modelName <- modelOptions[["name"]]

if (is.null(modelsContainer[[modelName]][["graph"]])) {
graph <- try(procModelGraphSingleModel(options[["processModels"]][[i]], globalDependent = options[["dependent"]]))
graph <- try(.procModelGraphSingleModel(options[["processModels"]][[i]], globalDependent = options[["dependent"]]))
state <- createJaspState(object = graph)
state$dependOn(
optionContainsValue = list(processModels = modelOptions),
Expand All @@ -142,7 +142,7 @@ ClassicProcess <- function(jaspResults, dataset = NULL, options) {
}
}

procModelGraphSingleModel <- function(modelOptions, globalDependent, options) {
.procModelGraphSingleModel <- function(modelOptions, globalDependent, options) {
processRelationships <- switch(modelOptions[["inputType"]],
inputVariables = modelOptions[["processRelationships"]],
# Insert function for plotting conceptual hard-coded Hayes model, in case
Expand Down

0 comments on commit 67b1575

Please sign in to comment.