make_between | R Documentation |
Create an ExprBetween instance.
make_between(field, low, high)
field |
A character value or an ExprField instance representing the field to check. |
low |
An atomic single value or an ExprValue instance representing the lower bound. |
high |
An atomic single value of an ExprValue instance representing the upper bound. |
An instance of ExprBetween.
# To generate a BETWEEN expression checking if the "year" field is between
# 1990 and 2000:
between <- make_between("year", 1990, 2000)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.