Skip to content

Commit

Permalink
swap order of upper and lower in matrix table (jasp-stats#294)
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnnyDoorn authored Apr 8, 2024
1 parent 6db0e69 commit 02c5fd7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions R/correlation.R
Original file line number Diff line number Diff line change
Expand Up @@ -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){
Expand Down

0 comments on commit 02c5fd7

Please sign in to comment.