Skip to main content
  1. Posts/

Supply Chain Analytics Edx Course - A Retrospective

·2 mins

I enrolled in the course “Supply Chain Analytics” from MIT on Edx. The course was about analytical methods that are useful to Supply Chain Professionals in their line of work. The course entailed Mathematical Modeling and Reasoning about uncertainty using the calculus of Probability. Here are my notes from the course and some salient points:

Linear Programming #

Supply Chain Designers make use of Linear programming for designing delivery network with the shortest route or other properties. I had used glpk in the past for solving linear programming problems like shortest path. Recently, I came across Julia’s excellent JuMP package for optimization. The package uses Julia’s metaprogramming chops to create a DSL for optimization. An added advantage is that when we use the package, we have Julia’s excellent libraries and programming constructs at our disposal. I blogged about some of them as well:

R #

R is the language du jour of statisticians. If you happen to use a statistical workflow, it is very likely that someone has written an R package for it.

Discrete Event Simulation #

An excellent revelation in the course was discovery of R’s simmer package for building discrete event simulation models, especially Queuing theory models. The course’s original recommendation was Anylogic, but I was looking for a library or package which gives programmatic control. I came across SimPy and SimJulia, both of which are excellent packages, but I found R’s simmer package closer to what I was looking for. Simmer’s workflow is focused around Resources and trajectory which takes some time to get used to, but it has excellent documentation.

I made a notes-like draft for skimming through important concepts. You can find the document here: SCA-Notes

Overall, I found the course insightful.