Skip to content

Commit

Permalink
fix position
Browse files Browse the repository at this point in the history
  • Loading branch information
FBartos committed Nov 15, 2024
1 parent 18854a3 commit 1f41b36
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions R/equivalenceindependentsamplesttest.R
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ EquivalenceIndependentSamplesTTest <- function(jaspResults, dataset, options) {
# Create table
equivalenceIndTTestTable <- createJaspTable(title = gettext("Equivalence Independent Samples T-Test"))
equivalenceIndTTestTable$dependOn(c("variables", "groupingVariable", "tests", "alpha", "missingValues", "boundstype", .equivalenceRegionDependencies))
equivalenceIndTTestTable$positions <- 1
equivalenceIndTTestTable$position <- 1

# Add Columns to table
equivalenceIndTTestTable$addColumnInfo(name = "variable", title = " ", type = "string", combine = TRUE)
Expand Down Expand Up @@ -214,7 +214,7 @@ EquivalenceIndependentSamplesTTest <- function(jaspResults, dataset, options) {
# Create table
equivalenceBoundsTable <- createJaspTable(title = gettext("Equivalence Bounds"))
equivalenceBoundsTable$dependOn(c("variables", "groupingVariable", "tests", "alpha", "missingValues", "boundstype", .equivalenceRegionDependencies))
equivalenceBoundsTable$positions <- 2
equivalenceBoundsTable$position <- 2

# Add Columns to table
equivalenceBoundsTable$addColumnInfo(name = "variable", title = " ", type = "string", combine = TRUE)
Expand Down Expand Up @@ -275,7 +275,7 @@ EquivalenceIndependentSamplesTTest <- function(jaspResults, dataset, options) {
# Create table
equivalenceDescriptivesTable <- createJaspTable(title = gettext("Descriptives"))
equivalenceDescriptivesTable$dependOn(c("variables", "groupingVariable", "descriptives", "missingValues"))
equivalenceDescriptivesTable$positions <- 3
equivalenceDescriptivesTable$position <- 3

# Add Columns to table
equivalenceDescriptivesTable$addColumnInfo(name = "variable", title = " ", type = "string", combine = TRUE)
Expand Down Expand Up @@ -329,7 +329,7 @@ EquivalenceIndependentSamplesTTest <- function(jaspResults, dataset, options) {

equivalenceBoundsContainer <- createJaspContainer(title = gettext("Equivalence Bounds Plots"))
equivalenceBoundsContainer$dependOn(c("variables", "groupingVariable", "tests", "alpha", "missingValues", "boundstype", "equivalenceboundsplot", .equivalenceRegionDependencies))
equivalenceBoundsContainer$positions <- 4
equivalenceBoundsContainer$position <- 4
jaspResults[["equivalenceBoundsContainer"]] <- equivalenceBoundsContainer

if (!ready) {
Expand Down

0 comments on commit 1f41b36

Please sign in to comment.