Skip to content

Commit

Permalink
backwards compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
LouiseDck committed Sep 8, 2024
1 parent ca9008f commit 80f681d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion book/in_memory/reticulate.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ np <- reticulate::import("numpy")
a <- np$asarray(tuple(list(1,2), list(3, 4)))
b <- np$asarray(list(5,6))
b <- np$reshape(b, shape = tuple(1L,2L))
b <- np$reshape(b, newshape = tuple(1L,2L))
np$concatenate(tuple(a, b), axis=0L)
```
Expand Down

0 comments on commit 80f681d

Please sign in to comment.