You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For a given IntColumn, only the isIn(int...) method produces the expected results. The isIn(Collection) method inherited from NumericColumn matches actually contained numbers only when they are entered as Doubles into the query collection.
I think this is due to NumericColumn.isIn(Collection) using Collection.contains for matching against Double-converted content cells. I might even produce a fix.
The text was updated successfully, but these errors were encountered:
m37r
added a commit
to m37r/tablesaw
that referenced
this issue
Aug 18, 2023
For a given IntColumn, only the
isIn(int...)
method produces the expected results. TheisIn(Collection)
method inherited from NumericColumn matches actually contained numbers only when they are entered as Doubles into the query collection.To test:
I think this is due to
NumericColumn.isIn(Collection)
usingCollection.contains
for matching against Double-converted content cells. I might even produce a fix.The text was updated successfully, but these errors were encountered: