RangeOperator {rPDBapi} | R Documentation |
Create a Range Search Operator
Description
Constructs a RangeOperator object for search operations that specify a range for attribute values.
Usage
RangeOperator(
attribute,
from_value,
to_value,
include_lower = TRUE,
include_upper = TRUE,
negation = FALSE
)
Arguments
attribute |
The attribute to be evaluated within a range. |
from_value |
The starting value of the range. |
to_value |
The ending value of the range. |
include_lower |
Boolean to include the lower bound in the range. |
include_upper |
Boolean to include the upper bound in the range. |
negation |
Boolean to negate the range condition. |
Value
An object of class 'RangeOperator'.
[Package rPDBapi version 1.3 Index]