Skip to content

Commit

Permalink
lintr
Browse files Browse the repository at this point in the history
  • Loading branch information
strengejacke committed Jul 13, 2024
1 parent 69ed5f5 commit 2c0953f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion R/icc.R
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,12 @@ icc <- function(model,
# iccs between groups
# n_grps <- length(vars$var.intercept)
# level_combinations <- utils::combn(1:n_grps, m = n_grps - 1, simplify = FALSE)
# icc_grp <- sapply(level_combinations, function(v) vars$var.intercept[v[1]] / (vars$var.intercept[v[1]] + vars$var.intercept[v[2]]))
# icc_grp <- sapply(
# level_combinations,
# function(v) {
# vars$var.intercept[v[1]] / (vars$var.intercept[v[1]] + vars$var.intercept[v[2]])
# }
# )
#
# out2 <- data.frame(
# Group1 = group_names[sapply(level_combinations, function(i) i[1])],
Expand Down

0 comments on commit 2c0953f

Please sign in to comment.