finos / perspective

A data visualization and analytics component, especially well-suited for large and/or streaming datasets.
https://perspective.finos.org/
Apache License 2.0
8.38k stars 1.17k forks source link

wrong result for compare expression of int columns #2512

Closed ruoyu0088 closed 8 months ago

ruoyu0088 commented 8 months ago
  1. open the example : https://perspective.finos.org/block/?example=editable
  2. add a new column with title of mask and expression of "Row ID" > 6
  3. add the mask column to the columns list

the values in mask column is not correct:

image

  1. change the expression to "Row ID" * 1.00001 > 6 and it works:

image

timkpaine commented 8 months ago

@ruoyu0088 you probably want float("Row ID") > 6 or "Row ID" > integer(6)

texodus commented 8 months ago

Duplicate #1614