Skip to content

Commit 0ce266a

Browse files
committed
speed up condense_data()
1 parent 646c267 commit 0ce266a

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

R/class_database.R

+6-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,12 @@ database_class <- R6::R6Class(
149149
lookup_list(.subset2(self, "lookup"))
150150
},
151151
condense_data = function(data) {
152-
data[!duplicated(data$name, fromLast = TRUE), ]
152+
repeats <- duplicated(data$name, fromLast = TRUE)
153+
if (any(repeats)) {
154+
data[!repeats, ]
155+
} else {
156+
data
157+
}
153158
},
154159
read_condensed_data = function() {
155160
self$condense_data(self$read_data())

0 commit comments

Comments
 (0)