├── .gitignore ├── Excel ├── Knapsack.xlsx ├── MachineScheduling.xlsx ├── StockCutting.xlsx ├── ~$Knapsack.xlsx └── ~$MachineScheduling.xlsx ├── LICENSE.md ├── README.md ├── Syllabus.html ├── Syllabus.md ├── linac.mod ├── matlab ├── CommodityPrices.m ├── TolBenNGPlots.m └── TolBenNGPrices.csv ├── notebooks ├── .ipynb_checkpoints │ ├── Assignment Problems-checkpoint.ipynb │ ├── Case Study - Landhills Winery-checkpoint.ipynb │ ├── Economic Order Quantity-checkpoint.ipynb │ ├── Energy ETF's-checkpoint.ipynb │ ├── FernandoDemo-checkpoint.ipynb │ ├── Getting Started with Discrete Event Simulation-checkpoint.ipynb │ ├── Getting Started with GNU MathProg-checkpoint.ipynb │ ├── Getting Started with IPython-checkpoint.ipynb │ ├── Inventory Management-checkpoint.ipynb │ ├── Jesuit Volunteer Corps-checkpoint.ipynb │ ├── Landhills Winery-checkpoint.ipynb │ ├── Log-optimal Growth and the Kelly Criterion-checkpoint.ipynb │ ├── Machine Bottleneck-checkpoint.ipynb │ ├── Newsvendor Problem-checkpoint.ipynb │ ├── Optimal Mixture and Blending Problems-checkpoint.ipynb │ ├── Portfolio Optimization using Mean Absolute Deviation-checkpoint.ipynb │ ├── Production Models with Constraints-checkpoint.ipynb │ ├── PuLP Demo-checkpoint.ipynb │ ├── Stochastic Price Models-checkpoint.ipynb │ ├── Transportation Networks-checkpoint.ipynb │ ├── Warehouse Fulfillment Operations-checkpoint.ipynb │ └── Warehouse Operations-checkpoint.ipynb ├── Assignment Problems.ipynb ├── Case Study - Landhills Winery.ipynb ├── Energy ETF's.ipynb ├── FernandoDemo.ipynb ├── Getting Started with Discrete Event Simulation.ipynb ├── Getting Started with GNU MathProg.ipynb ├── Getting Started with IPython.ipynb ├── Inventory Management.ipynb ├── Jesuit Volunteer Corps.ipynb ├── LP Problems in Development.ipynb ├── Landhills Winery.ipynb ├── Log-optimal Growth and the Kelly Criterion.ipynb ├── Machine Bottleneck.ipynb ├── Machine Shop Throughput.ipynb ├── Newsvendor Problem.ipynb ├── Optimal Mixture and Blending Problems.ipynb ├── Portfolio Optimization using Mean Absolute Deviation.ipynb ├── Production Models with Constraints.ipynb ├── PuLP Demo.ipynb ├── Stochastic Price Models.ipynb ├── TransportNet.mod ├── Transportation Networks.ipynb ├── Warehouse Fulfillment Operations.ipynb ├── customer.csv ├── display.txt ├── evm.csv ├── evpi.csv ├── evsp.csv ├── img │ ├── InventoryManagementEOQ.png │ ├── Kelly_Criterion_Fig1.pdf │ ├── Kelly_Criterion_Fig1.png │ ├── Kelly_Criterion_Fig1.tex │ ├── Kelly_Criterion_Fig2.pdf │ ├── Kelly_Criterion_Fig2.png │ ├── Kelly_Criterion_Fig2.tex │ ├── Kelly_Criterion_Volatility_Pumping-0.png │ ├── Kelly_Criterion_Volatility_Pumping-1.png │ ├── Kelly_Criterion_Volatility_Pumping.pdf │ ├── Kelly_Criterion_Volatility_Pumping.png │ ├── Kelly_Criterion_Volatility_Pumping.tex │ ├── LP_ProductX.pdf │ ├── LP_ProductX.png │ ├── LP_ProductX.tex │ ├── LP_ProductXY.pdf │ ├── LP_ProductXY.png │ ├── LP_ProductXY.tex │ ├── LP_ProductY.pdf │ ├── LP_ProductY.png │ ├── LP_ProductY.tex │ ├── LPprob01.png │ ├── StochasticPriceModelBootstrap.png │ ├── StochasticPriceModelGBM.png │ ├── StochasticPriceModelLogT.png │ ├── TransportNet.pdf │ ├── TransportNet.png │ ├── TransportNet.tex │ ├── TransportNet_sens.pdf │ ├── TransportNet_sens.png │ ├── TransportNet_sens.tex │ ├── TransportNet_soln.pdf │ ├── TransportNet_soln.png │ ├── TransportNet_soln.tex │ └── TransportationNetworksMap.png ├── out.txt ├── output ├── output.csv ├── output.txt ├── sensitivity.txt ├── ship.csv ├── source.csv └── styles │ └── custom.css └── untitled (5).mod /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/.gitignore -------------------------------------------------------------------------------- /Excel/Knapsack.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/Excel/Knapsack.xlsx -------------------------------------------------------------------------------- /Excel/MachineScheduling.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/Excel/MachineScheduling.xlsx -------------------------------------------------------------------------------- /Excel/StockCutting.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/Excel/StockCutting.xlsx -------------------------------------------------------------------------------- /Excel/~$Knapsack.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/Excel/~$Knapsack.xlsx -------------------------------------------------------------------------------- /Excel/~$MachineScheduling.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/Excel/~$MachineScheduling.xlsx -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/README.md -------------------------------------------------------------------------------- /Syllabus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/Syllabus.html -------------------------------------------------------------------------------- /Syllabus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/Syllabus.md -------------------------------------------------------------------------------- /linac.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/linac.mod -------------------------------------------------------------------------------- /matlab/CommodityPrices.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /matlab/TolBenNGPlots.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/matlab/TolBenNGPlots.m -------------------------------------------------------------------------------- /matlab/TolBenNGPrices.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/matlab/TolBenNGPrices.csv -------------------------------------------------------------------------------- /notebooks/.ipynb_checkpoints/Assignment Problems-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/.ipynb_checkpoints/Assignment Problems-checkpoint.ipynb -------------------------------------------------------------------------------- /notebooks/.ipynb_checkpoints/Case Study - Landhills Winery-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/.ipynb_checkpoints/Case Study - Landhills Winery-checkpoint.ipynb -------------------------------------------------------------------------------- /notebooks/.ipynb_checkpoints/Economic Order Quantity-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/.ipynb_checkpoints/Economic Order Quantity-checkpoint.ipynb -------------------------------------------------------------------------------- /notebooks/.ipynb_checkpoints/Energy ETF's-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/.ipynb_checkpoints/Energy ETF's-checkpoint.ipynb -------------------------------------------------------------------------------- /notebooks/.ipynb_checkpoints/FernandoDemo-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/.ipynb_checkpoints/FernandoDemo-checkpoint.ipynb -------------------------------------------------------------------------------- /notebooks/.ipynb_checkpoints/Getting Started with Discrete Event Simulation-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/.ipynb_checkpoints/Getting Started with Discrete Event Simulation-checkpoint.ipynb -------------------------------------------------------------------------------- /notebooks/.ipynb_checkpoints/Getting Started with GNU MathProg-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/.ipynb_checkpoints/Getting Started with GNU MathProg-checkpoint.ipynb -------------------------------------------------------------------------------- /notebooks/.ipynb_checkpoints/Getting Started with IPython-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/.ipynb_checkpoints/Getting Started with IPython-checkpoint.ipynb -------------------------------------------------------------------------------- /notebooks/.ipynb_checkpoints/Inventory Management-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/.ipynb_checkpoints/Inventory Management-checkpoint.ipynb -------------------------------------------------------------------------------- /notebooks/.ipynb_checkpoints/Jesuit Volunteer Corps-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/.ipynb_checkpoints/Jesuit Volunteer Corps-checkpoint.ipynb -------------------------------------------------------------------------------- /notebooks/.ipynb_checkpoints/Landhills Winery-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/.ipynb_checkpoints/Landhills Winery-checkpoint.ipynb -------------------------------------------------------------------------------- /notebooks/.ipynb_checkpoints/Log-optimal Growth and the Kelly Criterion-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/.ipynb_checkpoints/Log-optimal Growth and the Kelly Criterion-checkpoint.ipynb -------------------------------------------------------------------------------- /notebooks/.ipynb_checkpoints/Machine Bottleneck-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/.ipynb_checkpoints/Machine Bottleneck-checkpoint.ipynb -------------------------------------------------------------------------------- /notebooks/.ipynb_checkpoints/Newsvendor Problem-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/.ipynb_checkpoints/Newsvendor Problem-checkpoint.ipynb -------------------------------------------------------------------------------- /notebooks/.ipynb_checkpoints/Optimal Mixture and Blending Problems-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/.ipynb_checkpoints/Optimal Mixture and Blending Problems-checkpoint.ipynb -------------------------------------------------------------------------------- /notebooks/.ipynb_checkpoints/Portfolio Optimization using Mean Absolute Deviation-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/.ipynb_checkpoints/Portfolio Optimization using Mean Absolute Deviation-checkpoint.ipynb -------------------------------------------------------------------------------- /notebooks/.ipynb_checkpoints/Production Models with Constraints-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/.ipynb_checkpoints/Production Models with Constraints-checkpoint.ipynb -------------------------------------------------------------------------------- /notebooks/.ipynb_checkpoints/PuLP Demo-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/.ipynb_checkpoints/PuLP Demo-checkpoint.ipynb -------------------------------------------------------------------------------- /notebooks/.ipynb_checkpoints/Stochastic Price Models-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/.ipynb_checkpoints/Stochastic Price Models-checkpoint.ipynb -------------------------------------------------------------------------------- /notebooks/.ipynb_checkpoints/Transportation Networks-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/.ipynb_checkpoints/Transportation Networks-checkpoint.ipynb -------------------------------------------------------------------------------- /notebooks/.ipynb_checkpoints/Warehouse Fulfillment Operations-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/.ipynb_checkpoints/Warehouse Fulfillment Operations-checkpoint.ipynb -------------------------------------------------------------------------------- /notebooks/.ipynb_checkpoints/Warehouse Operations-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/.ipynb_checkpoints/Warehouse Operations-checkpoint.ipynb -------------------------------------------------------------------------------- /notebooks/Assignment Problems.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/Assignment Problems.ipynb -------------------------------------------------------------------------------- /notebooks/Case Study - Landhills Winery.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/Case Study - Landhills Winery.ipynb -------------------------------------------------------------------------------- /notebooks/Energy ETF's.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/Energy ETF's.ipynb -------------------------------------------------------------------------------- /notebooks/FernandoDemo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/FernandoDemo.ipynb -------------------------------------------------------------------------------- /notebooks/Getting Started with Discrete Event Simulation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/Getting Started with Discrete Event Simulation.ipynb -------------------------------------------------------------------------------- /notebooks/Getting Started with GNU MathProg.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/Getting Started with GNU MathProg.ipynb -------------------------------------------------------------------------------- /notebooks/Getting Started with IPython.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/Getting Started with IPython.ipynb -------------------------------------------------------------------------------- /notebooks/Inventory Management.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/Inventory Management.ipynb -------------------------------------------------------------------------------- /notebooks/Jesuit Volunteer Corps.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/Jesuit Volunteer Corps.ipynb -------------------------------------------------------------------------------- /notebooks/LP Problems in Development.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/LP Problems in Development.ipynb -------------------------------------------------------------------------------- /notebooks/Landhills Winery.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/Landhills Winery.ipynb -------------------------------------------------------------------------------- /notebooks/Log-optimal Growth and the Kelly Criterion.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/Log-optimal Growth and the Kelly Criterion.ipynb -------------------------------------------------------------------------------- /notebooks/Machine Bottleneck.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/Machine Bottleneck.ipynb -------------------------------------------------------------------------------- /notebooks/Machine Shop Throughput.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/Machine Shop Throughput.ipynb -------------------------------------------------------------------------------- /notebooks/Newsvendor Problem.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/Newsvendor Problem.ipynb -------------------------------------------------------------------------------- /notebooks/Optimal Mixture and Blending Problems.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/Optimal Mixture and Blending Problems.ipynb -------------------------------------------------------------------------------- /notebooks/Portfolio Optimization using Mean Absolute Deviation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/Portfolio Optimization using Mean Absolute Deviation.ipynb -------------------------------------------------------------------------------- /notebooks/Production Models with Constraints.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/Production Models with Constraints.ipynb -------------------------------------------------------------------------------- /notebooks/PuLP Demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/PuLP Demo.ipynb -------------------------------------------------------------------------------- /notebooks/Stochastic Price Models.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/Stochastic Price Models.ipynb -------------------------------------------------------------------------------- /notebooks/TransportNet.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/TransportNet.mod -------------------------------------------------------------------------------- /notebooks/Transportation Networks.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/Transportation Networks.ipynb -------------------------------------------------------------------------------- /notebooks/Warehouse Fulfillment Operations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/Warehouse Fulfillment Operations.ipynb -------------------------------------------------------------------------------- /notebooks/customer.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/customer.csv -------------------------------------------------------------------------------- /notebooks/display.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notebooks/evm.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/evm.csv -------------------------------------------------------------------------------- /notebooks/evpi.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/evpi.csv -------------------------------------------------------------------------------- /notebooks/evsp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/evsp.csv -------------------------------------------------------------------------------- /notebooks/img/InventoryManagementEOQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/img/InventoryManagementEOQ.png -------------------------------------------------------------------------------- /notebooks/img/Kelly_Criterion_Fig1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/img/Kelly_Criterion_Fig1.pdf -------------------------------------------------------------------------------- /notebooks/img/Kelly_Criterion_Fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/img/Kelly_Criterion_Fig1.png -------------------------------------------------------------------------------- /notebooks/img/Kelly_Criterion_Fig1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/img/Kelly_Criterion_Fig1.tex -------------------------------------------------------------------------------- /notebooks/img/Kelly_Criterion_Fig2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/img/Kelly_Criterion_Fig2.pdf -------------------------------------------------------------------------------- /notebooks/img/Kelly_Criterion_Fig2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/img/Kelly_Criterion_Fig2.png -------------------------------------------------------------------------------- /notebooks/img/Kelly_Criterion_Fig2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/img/Kelly_Criterion_Fig2.tex -------------------------------------------------------------------------------- /notebooks/img/Kelly_Criterion_Volatility_Pumping-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/img/Kelly_Criterion_Volatility_Pumping-0.png -------------------------------------------------------------------------------- /notebooks/img/Kelly_Criterion_Volatility_Pumping-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/img/Kelly_Criterion_Volatility_Pumping-1.png -------------------------------------------------------------------------------- /notebooks/img/Kelly_Criterion_Volatility_Pumping.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/img/Kelly_Criterion_Volatility_Pumping.pdf -------------------------------------------------------------------------------- /notebooks/img/Kelly_Criterion_Volatility_Pumping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/img/Kelly_Criterion_Volatility_Pumping.png -------------------------------------------------------------------------------- /notebooks/img/Kelly_Criterion_Volatility_Pumping.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/img/Kelly_Criterion_Volatility_Pumping.tex -------------------------------------------------------------------------------- /notebooks/img/LP_ProductX.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/img/LP_ProductX.pdf -------------------------------------------------------------------------------- /notebooks/img/LP_ProductX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/img/LP_ProductX.png -------------------------------------------------------------------------------- /notebooks/img/LP_ProductX.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/img/LP_ProductX.tex -------------------------------------------------------------------------------- /notebooks/img/LP_ProductXY.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/img/LP_ProductXY.pdf -------------------------------------------------------------------------------- /notebooks/img/LP_ProductXY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/img/LP_ProductXY.png -------------------------------------------------------------------------------- /notebooks/img/LP_ProductXY.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/img/LP_ProductXY.tex -------------------------------------------------------------------------------- /notebooks/img/LP_ProductY.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/img/LP_ProductY.pdf -------------------------------------------------------------------------------- /notebooks/img/LP_ProductY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/img/LP_ProductY.png -------------------------------------------------------------------------------- /notebooks/img/LP_ProductY.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/img/LP_ProductY.tex -------------------------------------------------------------------------------- /notebooks/img/LPprob01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/img/LPprob01.png -------------------------------------------------------------------------------- /notebooks/img/StochasticPriceModelBootstrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/img/StochasticPriceModelBootstrap.png -------------------------------------------------------------------------------- /notebooks/img/StochasticPriceModelGBM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/img/StochasticPriceModelGBM.png -------------------------------------------------------------------------------- /notebooks/img/StochasticPriceModelLogT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/img/StochasticPriceModelLogT.png -------------------------------------------------------------------------------- /notebooks/img/TransportNet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/img/TransportNet.pdf -------------------------------------------------------------------------------- /notebooks/img/TransportNet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/img/TransportNet.png -------------------------------------------------------------------------------- /notebooks/img/TransportNet.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/img/TransportNet.tex -------------------------------------------------------------------------------- /notebooks/img/TransportNet_sens.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/img/TransportNet_sens.pdf -------------------------------------------------------------------------------- /notebooks/img/TransportNet_sens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/img/TransportNet_sens.png -------------------------------------------------------------------------------- /notebooks/img/TransportNet_sens.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/img/TransportNet_sens.tex -------------------------------------------------------------------------------- /notebooks/img/TransportNet_soln.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/img/TransportNet_soln.pdf -------------------------------------------------------------------------------- /notebooks/img/TransportNet_soln.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/img/TransportNet_soln.png -------------------------------------------------------------------------------- /notebooks/img/TransportNet_soln.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/img/TransportNet_soln.tex -------------------------------------------------------------------------------- /notebooks/img/TransportationNetworksMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/img/TransportationNetworksMap.png -------------------------------------------------------------------------------- /notebooks/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/out.txt -------------------------------------------------------------------------------- /notebooks/output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/output -------------------------------------------------------------------------------- /notebooks/output.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/output.csv -------------------------------------------------------------------------------- /notebooks/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/output.txt -------------------------------------------------------------------------------- /notebooks/sensitivity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/sensitivity.txt -------------------------------------------------------------------------------- /notebooks/ship.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/ship.csv -------------------------------------------------------------------------------- /notebooks/source.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/source.csv -------------------------------------------------------------------------------- /notebooks/styles/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/notebooks/styles/custom.css -------------------------------------------------------------------------------- /untitled (5).mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jckantor/ESTM60203/HEAD/untitled (5).mod --------------------------------------------------------------------------------