Closed jasonratcliff closed 1 year ago
To improve the interface of the Specimen class public methods, add a shared filter_* prefix to methods for filtering operations:
Specimen
filter_*
filter_limit()
limit()
filter_taxa()
taxa()
filter_collections()
collections()
Provide new common arguments for setting the behavior of the Specimen class methods:
.return
.return = FALSE
TRUE
.identifier
.identifier = NULL
identifier
Update package development infrastructure:
test_that()
roxygen2
man/*.Rd
Interface
To improve the interface of the
Specimen
class public methods, add a sharedfilter_*
prefix to methods for filtering operations:filter_limit()
replaceslimit()
filter_taxa()
replacestaxa()
filter_collections()
replacescollections()
Provide new common arguments for setting the behavior of the
Specimen
class methods:.return
.return = FALSE
allows chaining methods for subsequent filteringTRUE
, return a tibble object containing filtered records.identifier
.identifier = NULL
utilizes the column set by the public fieldidentifier
Development
Update package development infrastructure:
test_that()
local environmentsroxygen2
docstrings and updateman/*.Rd
files