Skip to content

Commit

Permalink
Adding dependency & changing position of set seed
Browse files Browse the repository at this point in the history
1) Adding dependency on checkbox
2) Changing position of Repeatability to be at the end after divider
  • Loading branch information
jvli4n committed Nov 16, 2024
1 parent 792e23c commit 3328e2e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion R/LSTconfidenceIntervals.R
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ LSTconfidenceIntervals <- function(jaspResults, dataset = NULL, options) {
}

.getConfidenceContainer <- function(jaspResults) {
confidenceContainer <- jaspResults[["confidenceContainer"]] %setOrRetrieve% createJaspContainer(dependencies = c("mu", "sigma", "n", "confidenceIntervalInterval", "nReps", "treePlot", "seed"))
confidenceContainer <- jaspResults[["confidenceContainer"]] %setOrRetrieve% createJaspContainer(dependencies = c("mu", "sigma", "n", "confidenceIntervalInterval", "nReps", "treePlot", "setSeed", "seed"))
return(confidenceContainer)
}

Expand Down
3 changes: 2 additions & 1 deletion inst/qml/LSTconfidenceIntervals.qml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ Form
defaultValue: 100
id:nReps
}
SetSeed{}
}
Group
{
Expand Down Expand Up @@ -240,5 +239,7 @@ Form

}
}
Divider{}
SetSeed{}
}

0 comments on commit 3328e2e

Please sign in to comment.