ComenzarEmpieza gratis

Simulation testing solution exercise

You are working to minimize the transportation costs of shipping products from warehouses in New York, and Atlanta, to customers in the East, South, Midwest, and West regions of the US. The input data of transportation costs and demand for each region is given to you in the variable d which is printed in the console.

Este ejercicio forma parte del curso

Supply Chain Analytics in Python

Ver curso

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

# Add noise to the objective function
model += lpSum([(X[(c, w)] + (d.loc[c, w] + ____()))
                for w in wh for c in cust])
Editar y ejecutar código