Skip to content

Commit

Permalink
fix blank label bug by accounting for blank cells as well as NAs
Browse files Browse the repository at this point in the history
  • Loading branch information
cjrace committed May 3, 2024
1 parent 6e86686 commit f0dc65e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions R/mainTests.r
Original file line number Diff line number Diff line change
Expand Up @@ -1959,6 +1959,7 @@ col_name_spaces <- function(meta) {
label <- function(meta) {
completed_labels <- meta %>%
filter(!is.na(label)) %>%
filter(label != "") %>%
nrow()

blank_labels <- nrow(meta) - completed_labels
Expand Down

0 comments on commit f0dc65e

Please sign in to comment.