Returns a list of quosures for use with
filter_records
to allow the use of dplyr-style expressions. See examples.
Examples
# some annotation data
AN <- annotation_source(data = iris)
# filter to setosa where Sepal length is less than 5
M <- filter_records(
wherever(
Species == "setosa",
Sepal.Length < 5
)
)
M <- model_apply(M, AN)
predicted(M) # 20 rows
#> A "annotation_source" object
#> ----------------------------
#> name: An annotation source
#> description: A base class defining an annotation source. This object is extended by MetmashR to define
#> other objects.
#> input params: tag, data, source
#> annotations: 20 rows x 5 columns