Skip to content

Commit

Permalink
Fixed bug in index function.
Browse files Browse the repository at this point in the history
  • Loading branch information
jrawbits committed Jun 9, 2021
1 parent 56e68cc commit a57aa21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sources/tools/models.R
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ ve.model.index <- function() {
# (each row is a "case" in stat lingo, and the "complete" ones have a non-NA value for each
# column)
# message("Adding inputs to Inputs data.frame")
ccases <- complete.cases(GroupTableName)
ccases <- complete.cases(GroupTableName[,c("Group","Table","Name")])
GroupTableName <- GroupTableName[ccases,]
# message("Length of complete.cases:",nrow(GroupTableName))
Index <- rbind(Index,GroupTableName)
Expand Down

0 comments on commit a57aa21

Please sign in to comment.