## code to prepare `DATASET` dataset goes here
RNGkind(sample.kind = "Rounding")
set.seed(42)
n <- 1000000
knapsack_objects <-
data.frame(
w=sample(1:4000, size = n, replace = TRUE),
v=runif(n = n, 0, 10000)
)
usethis::use_data(knapsack_objects)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.