Skip to main content

Column.between

betweenlowerupper

Group: Logical

Documentation

Element-wise inclusive bounds check.

Returns a column with boolean values indicating whether values of this column fit between the lower and upper bounds (both ends inclusive).

Arguments

  • lower: The lower bound to compare elements of self against. If lower is a column, the comparison is performed pairwise between corresponding elements of self and lower.
  • upper: The upper bound to compare elements of self against. If upper is a column, the comparison is performed pairwise between corresponding elements of self and upper.