Skip to content

Commit

Permalink
Fix for missing denominator in In chart.
Browse files Browse the repository at this point in the history
  • Loading branch information
anhoej committed Jan 13, 2025
1 parent 527ec6f commit 12a0160
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/helper.functions.R
Original file line number Diff line number Diff line change
Expand Up @@ -183,10 +183,10 @@ qic.mr <- function(x) {

qic.in <- function(x) {
base <- x$baseline & x$include

# Fix missing denominator
if (all(is.na(x$n))) {
x$n <- 1
x$n <- x$y.length
}

if (anyNA(x$cl)) {
Expand Down

0 comments on commit 12a0160

Please sign in to comment.