Skip to content

Commit

Permalink
Fix comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
wkmor1 committed Jun 7, 2024
1 parent 08befbf commit bd10bda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/finbif_collections.R
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ finbif_collections <- function(

if (!is.na(nmin)) {

ind <- ind & !is.na(collections[["count"]]) & collections[["count"]] > nmin
ind <- ind & !is.na(collections[["count"]]) & collections[["count"]] >= nmin

}

Expand Down

0 comments on commit bd10bda

Please sign in to comment.