Description Usage Arguments Value Examples
View source: R/greedy_knapsack.R
Greedy Knapsack Algorithm
1 | greedy_knapsack(x, W)
|
x |
data.frame with colnames 'v' & 'w' |
W |
Knapsack Maximum Weight |
Return best Knapsack combination with maximum value
1 2 3 4 5 6 7 | set.seed(42)
n <- 2000
knapsack_objects <- data.frame(
w=sample(1:4000, size = n, replace = TRUE),
v=runif(n = n, 0, 10000)
)
greedy_knapsack(x = knapsack_objects[1:8,], W = 3500)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.