We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The static method Table.compareRows always returns false except for the last row. It happens even when we compare rows of the same table.
Table.compareRows
false
Table table = Table.read().csv(new File("data.csv")); System.out.println(table.shape()); for(int i = 0; i < table.rowCount(); i++) { System.out.println("ROW " + i + ": "+ Table.compareRows(i, table, table)); }
Actual output:
data.csv: 5 rows X 2 cols ROW 0: false ROW 1: false ROW 2: false ROW 3: false ROW 4: true
Expected output:
data.csv: 5 rows X 2 cols ROW 0: true ROW 1: true ROW 2: true ROW 3: true ROW 4: true
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The static method
Table.compareRows
always returnsfalse
except for the last row. It happens even when we compare rows of the same table.Actual output:
Expected output:
The text was updated successfully, but these errors were encountered: