From 377841fee9ab2f4e1f7164227440d9e1b5e3d6c9 Mon Sep 17 00:00:00 2001 From: Johnny Date: Wed, 3 Apr 2024 17:26:46 +0200 Subject: [PATCH] swap order of upper and lower in matrix table --- R/correlation.R | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/R/correlation.R b/R/correlation.R index 0fe942f1..c2072099 100644 --- a/R/correlation.R +++ b/R/correlation.R @@ -283,12 +283,12 @@ CorrelationInternal <- function(jaspResults, dataset, options){ if(options$ci){ - mainTable$addColumnInfo(name = sprintf(name, "upper.ci"), - title = gettextf("Upper %s%% CI", 100*options$ciLevel), - type = "number", overtitle = overtitle) mainTable$addColumnInfo(name = sprintf(name, "lower.ci"), title = gettextf("Lower %s%% CI", 100*options$ciLevel), type = "number", overtitle = overtitle) + mainTable$addColumnInfo(name = sprintf(name, "upper.ci"), + title = gettextf("Upper %s%% CI", 100*options$ciLevel), + type = "number", overtitle = overtitle) } if(options$effectSize){