Skip to content

Commit

Permalink
Merge branch 'main' of github.com:rapidsai/node-rapids
Browse files Browse the repository at this point in the history
  • Loading branch information
trxcllnt committed May 25, 2021
2 parents 9d7abd5 + d1bdc3d commit 35f4e5d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions BINDINGS.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,8 @@ The tables below show the bindings that have been implemented in `node-rapids`.
| `to_pandas` | |
| `to_string` | |
| `truediv` ||
| `unique` | |
| `value_counts` | |
| `unique` | |
| `value_counts` | |
| `values_to_string` | |
| `var` ||
| `where` | |
Expand Down Expand Up @@ -220,8 +220,8 @@ The tables below show the bindings that have been implemented in `node-rapids`.
| `to_json` | | | |
| `to_pandas` | | | |
| `to_string` | | | |
| `unique` | | | |
| `value_counts` | | | |
| `unique` | | | |
| `value_counts` | | | |
| `values_to_string` | | | |
| `where` | | | |
| `get_json_object` | | ✅ (`getJSONObject`)| |
Expand Down
2 changes: 1 addition & 1 deletion modules/cudf/test/cudf-data-frame-tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@ describe('dataframe unaryops', () => {

test('dataframe.log', () => {
const result = df.log();
expect([...result.get('a')]).toEqual([-2147483648, -2147483648, 1);
expect([...result.get('a')]).toEqual([-2147483648, -2147483648, 1]);
expect([...result.get('b')]).toEqual([0, 0, 1]);
expect([...result.get('c')]).toEqual([...c]);
expect([...result.get('d')]).toEqual([...d.log()]);
Expand Down

0 comments on commit 35f4e5d

Please sign in to comment.