Skip to content

Commit

Permalink
CF fix; changed to seq_along()
Browse files Browse the repository at this point in the history
  • Loading branch information
mattfidler committed Sep 30, 2023
1 parent 7092131 commit 5686d52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/computingutil.R
Original file line number Diff line number Diff line change
Expand Up @@ -1163,7 +1163,7 @@ getBootstrapSummary <- function(fitList,
parFixedlistVec <- do.call("rbind", parFixedlistVec)

omgVecBoot <- list()
omegaIdx <- seq(length(omegaMatlist))
omegaIdx <- seq_along(omegaMatlist)

omgVecBoot <- lapply(omegaIdx, function(idx) {
omgMat <- omegaMatlist[[idx]]
Expand Down

0 comments on commit 5686d52

Please sign in to comment.