View source: R/schema_helpers.R
| schema_validator_numeric | R Documentation |
Returns a predicate function that checks a scalar numeric value against inclusive numeric bounds and optional missingness.
schema_validator_numeric(min = -Inf, max = Inf, allow_na = FALSE)
min |
A single numeric lower bound. |
max |
A single numeric upper bound. |
allow_na |
Logical scalar indicating whether missing values are permitted. |
A function of signature function(x) -> TRUE/FALSE.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.