I have the following dataframe that contains both indices of three dimensional variables and cost parameters.
Product | Factory | Sub | Cost |
---|---|---|---|
A | F1 | A1 | 10 |
A | F2 | A1 | 8 |
B | F1 | B1 | 20 |
C | F2 | C2 | 12 |
Let say there are 3 types of products, 2 factories, and 4 sub_products. I define the following vectors
Product=["A", "B", "C"]
Factory=["F1","F2"]
Sub=["A1","A2","B1","B2","C1","C2"]
I am trying to construct the following objective function for the variables in the dataframe (ie. the coefficients of the decision variables that are not in the table are zero).
Min 10x[A,F1,A1]+ 8x[A,F2,A1] + 20x[B,F1,B1] + 12*x[C,F2,C2]
How can I write this code using JuMP. I tried the following code
@objective(model, Min, sum(data.Cost[data.Product==product,data.Factory==factory,data.SubProduct==sub]*x[product, factory, sub]
for product in Product, factory in Factory, sub in Sub))
Create the DataFrame, and then add a new column for the decision variables. Your objective is the sum of the cost and x columns multiplied together:
The JuMP documentation has a number of examples for working with DataFrames:
https://jump.dev/JuMP.jl/stable/tutorials/linear/diet/ https://jump.dev/JuMP.jl/stable/tutorials/linear/factory_schedule/ https://jump.dev/JuMP.jl/stable/tutorials/linear/multi/ https://jump.dev/JuMP.jl/stable/tutorials/linear/multi_commodity_network/