Skip to content

Commit

Permalink
devtools::build_readme()
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilHvitfeldt committed May 22, 2024
1 parent b63ac3f commit 14d9d9b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ x_dense[7] <- 1
x_dense[15] <- 10

obj_size(x_sparse)
#> 1.24 kB
#> 1.35 kB
obj_size(x_dense)
#> 8.05 kB

Expand All @@ -64,11 +64,11 @@ x_sparse_1000 <- sparse_double(numeric(), integer(), length = 1000)
x_sparse_1000000 <- sparse_double(numeric(), integer(), length = 10000000)

obj_size(x_sparse_0)
#> 1.19 kB
#> 1.30 kB
obj_size(x_sparse_1000)
#> 1.19 kB
#> 1.30 kB
obj_size(x_sparse_1000000)
#> 1.19 kB
#> 1.30 kB

x_dense_0 <- numeric(0)
x_dense_1000 <- numeric(1000)
Expand Down

0 comments on commit 14d9d9b

Please sign in to comment.