View source: R/filter_predicates.R
apply_filter_predicate | R Documentation |
This function is used internally by all the get_*()
functions to filter on
deployments.
apply_filter_predicate(df, verbose, ...)
df |
Data frame we want to apply filter(s) expression(s) |
verbose |
Show ( |
... |
filter predicates to apply to |
A data frame.
Other filter functions:
pred()
# and
apply_filter_predicate(
mica$data$deployments,
verbose = TRUE,
pred_gte("latitude", 51.28),
pred_lt("longitude", 3.56)
)
# Equivalent of
apply_filter_predicate(
mica$data$deployments,
verbose = TRUE,
pred_and(
pred_gte("latitude", 51.28),
pred_lt("longitude", 3.56)
)
)
# or
apply_filter_predicate(
mica$data$deployments,
verbose = TRUE,
pred_or(
pred_gte("latitude", 51.28),
pred_lt("longitude", 3.56)
)
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.