├── 1-intro-terminal-and-R ├── README.md ├── intro.R ├── lecture_1_terminal.pdf ├── lecture_2_git.pdf └── my_report │ ├── fig1.png │ ├── fig2.png │ ├── my_code.jl │ └── report.txt ├── 2-data-wrangling ├── README.md ├── exercises.R ├── grades.R ├── presentation.R ├── script.R └── solutions.R ├── 3-visualization ├── README.md ├── script_full.R ├── script_skeleton.r └── slides.pdf ├── 4-graphs ├── README.md ├── presentation.pdf ├── script_complete.R └── script_skeleton.R ├── 5-excel ├── 5b-1.R ├── 5b-2.R ├── 5b-3.R ├── 5b-4.R ├── FormulasReferences.xlsx ├── How to.txt ├── KeyFormulasReferences.xlsx ├── KeyMacrosFlow.xlsm ├── KeyMatrices.xlsx ├── KeySolver.xlsx ├── KeyStart.xlsx ├── KeyStatistics.xlsx ├── KeyUserFunction.xlsm ├── Lecture5b.pdf ├── LettersBinary.csv ├── MacrosFlow.xlsx ├── Matrices.xlsx ├── README.md ├── Shortcuts.pdf ├── Solver.xlsx ├── Start.xlsx ├── Statistics.xlsx ├── TitanicPassengers.csv └── UserFunction.xlsx ├── 6-deep-learning ├── IAPDeepLearn.pdf ├── IAPDeepLearnInstall.pdf ├── Project1NLRegComplete.ipynb ├── Project1NLRegLive.ipynb ├── Project2ANNBinaryComplete.ipynb ├── Project2ANNBinaryLive.ipynb ├── Project3MNISTComplete.ipynb └── Project3MNISTLive.ipynb ├── 7-nonlinear-optimization ├── Constrained least squares.ipynb ├── Disciplined convex programming + SVM.ipynb ├── DualNumbers.ipynb └── README.md ├── 8-integer-optimization ├── IP-solvers.ipynb ├── Modeling.ipynb └── README.md ├── README.md └── data ├── 2013-05-14.csv ├── 2013-05-14_neighborhoods.csv ├── area_info.csv ├── area_info.txt ├── area_info_full.csv └── rate_code_map.csv /1-intro-terminal-and-R/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/1-intro-terminal-and-R/README.md -------------------------------------------------------------------------------- /1-intro-terminal-and-R/intro.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/1-intro-terminal-and-R/intro.R -------------------------------------------------------------------------------- /1-intro-terminal-and-R/lecture_1_terminal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/1-intro-terminal-and-R/lecture_1_terminal.pdf -------------------------------------------------------------------------------- /1-intro-terminal-and-R/lecture_2_git.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/1-intro-terminal-and-R/lecture_2_git.pdf -------------------------------------------------------------------------------- /1-intro-terminal-and-R/my_report/fig1.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1-intro-terminal-and-R/my_report/fig2.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1-intro-terminal-and-R/my_report/my_code.jl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1-intro-terminal-and-R/my_report/report.txt: -------------------------------------------------------------------------------- 1 | This is the first class of IAP! 2 | -------------------------------------------------------------------------------- /2-data-wrangling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/2-data-wrangling/README.md -------------------------------------------------------------------------------- /2-data-wrangling/exercises.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/2-data-wrangling/exercises.R -------------------------------------------------------------------------------- /2-data-wrangling/grades.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/2-data-wrangling/grades.R -------------------------------------------------------------------------------- /2-data-wrangling/presentation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/2-data-wrangling/presentation.R -------------------------------------------------------------------------------- /2-data-wrangling/script.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/2-data-wrangling/script.R -------------------------------------------------------------------------------- /2-data-wrangling/solutions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/2-data-wrangling/solutions.R -------------------------------------------------------------------------------- /3-visualization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/3-visualization/README.md -------------------------------------------------------------------------------- /3-visualization/script_full.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/3-visualization/script_full.R -------------------------------------------------------------------------------- /3-visualization/script_skeleton.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/3-visualization/script_skeleton.r -------------------------------------------------------------------------------- /3-visualization/slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/3-visualization/slides.pdf -------------------------------------------------------------------------------- /4-graphs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/4-graphs/README.md -------------------------------------------------------------------------------- /4-graphs/presentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/4-graphs/presentation.pdf -------------------------------------------------------------------------------- /4-graphs/script_complete.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/4-graphs/script_complete.R -------------------------------------------------------------------------------- /4-graphs/script_skeleton.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/4-graphs/script_skeleton.R -------------------------------------------------------------------------------- /5-excel/5b-1.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/5-excel/5b-1.R -------------------------------------------------------------------------------- /5-excel/5b-2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/5-excel/5b-2.R -------------------------------------------------------------------------------- /5-excel/5b-3.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/5-excel/5b-3.R -------------------------------------------------------------------------------- /5-excel/5b-4.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/5-excel/5b-4.R -------------------------------------------------------------------------------- /5-excel/FormulasReferences.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/5-excel/FormulasReferences.xlsx -------------------------------------------------------------------------------- /5-excel/How to.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/5-excel/How to.txt -------------------------------------------------------------------------------- /5-excel/KeyFormulasReferences.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/5-excel/KeyFormulasReferences.xlsx -------------------------------------------------------------------------------- /5-excel/KeyMacrosFlow.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/5-excel/KeyMacrosFlow.xlsm -------------------------------------------------------------------------------- /5-excel/KeyMatrices.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/5-excel/KeyMatrices.xlsx -------------------------------------------------------------------------------- /5-excel/KeySolver.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/5-excel/KeySolver.xlsx -------------------------------------------------------------------------------- /5-excel/KeyStart.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/5-excel/KeyStart.xlsx -------------------------------------------------------------------------------- /5-excel/KeyStatistics.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/5-excel/KeyStatistics.xlsx -------------------------------------------------------------------------------- /5-excel/KeyUserFunction.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/5-excel/KeyUserFunction.xlsm -------------------------------------------------------------------------------- /5-excel/Lecture5b.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/5-excel/Lecture5b.pdf -------------------------------------------------------------------------------- /5-excel/LettersBinary.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/5-excel/LettersBinary.csv -------------------------------------------------------------------------------- /5-excel/MacrosFlow.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/5-excel/MacrosFlow.xlsx -------------------------------------------------------------------------------- /5-excel/Matrices.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/5-excel/Matrices.xlsx -------------------------------------------------------------------------------- /5-excel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/5-excel/README.md -------------------------------------------------------------------------------- /5-excel/Shortcuts.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/5-excel/Shortcuts.pdf -------------------------------------------------------------------------------- /5-excel/Solver.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/5-excel/Solver.xlsx -------------------------------------------------------------------------------- /5-excel/Start.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/5-excel/Start.xlsx -------------------------------------------------------------------------------- /5-excel/Statistics.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/5-excel/Statistics.xlsx -------------------------------------------------------------------------------- /5-excel/TitanicPassengers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/5-excel/TitanicPassengers.csv -------------------------------------------------------------------------------- /5-excel/UserFunction.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/5-excel/UserFunction.xlsx -------------------------------------------------------------------------------- /6-deep-learning/IAPDeepLearn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/6-deep-learning/IAPDeepLearn.pdf -------------------------------------------------------------------------------- /6-deep-learning/IAPDeepLearnInstall.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/6-deep-learning/IAPDeepLearnInstall.pdf -------------------------------------------------------------------------------- /6-deep-learning/Project1NLRegComplete.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/6-deep-learning/Project1NLRegComplete.ipynb -------------------------------------------------------------------------------- /6-deep-learning/Project1NLRegLive.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/6-deep-learning/Project1NLRegLive.ipynb -------------------------------------------------------------------------------- /6-deep-learning/Project2ANNBinaryComplete.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/6-deep-learning/Project2ANNBinaryComplete.ipynb -------------------------------------------------------------------------------- /6-deep-learning/Project2ANNBinaryLive.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/6-deep-learning/Project2ANNBinaryLive.ipynb -------------------------------------------------------------------------------- /6-deep-learning/Project3MNISTComplete.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/6-deep-learning/Project3MNISTComplete.ipynb -------------------------------------------------------------------------------- /6-deep-learning/Project3MNISTLive.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/6-deep-learning/Project3MNISTLive.ipynb -------------------------------------------------------------------------------- /7-nonlinear-optimization/Constrained least squares.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/7-nonlinear-optimization/Constrained least squares.ipynb -------------------------------------------------------------------------------- /7-nonlinear-optimization/Disciplined convex programming + SVM.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/7-nonlinear-optimization/Disciplined convex programming + SVM.ipynb -------------------------------------------------------------------------------- /7-nonlinear-optimization/DualNumbers.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/7-nonlinear-optimization/DualNumbers.ipynb -------------------------------------------------------------------------------- /7-nonlinear-optimization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/7-nonlinear-optimization/README.md -------------------------------------------------------------------------------- /8-integer-optimization/IP-solvers.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/8-integer-optimization/IP-solvers.ipynb -------------------------------------------------------------------------------- /8-integer-optimization/Modeling.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/8-integer-optimization/Modeling.ipynb -------------------------------------------------------------------------------- /8-integer-optimization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/8-integer-optimization/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/README.md -------------------------------------------------------------------------------- /data/2013-05-14.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/data/2013-05-14.csv -------------------------------------------------------------------------------- /data/2013-05-14_neighborhoods.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/data/2013-05-14_neighborhoods.csv -------------------------------------------------------------------------------- /data/area_info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/data/area_info.csv -------------------------------------------------------------------------------- /data/area_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/data/area_info.txt -------------------------------------------------------------------------------- /data/area_info_full.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/data/area_info_full.csv -------------------------------------------------------------------------------- /data/rate_code_map.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehuchette/OR-software-tools-2016/HEAD/data/rate_code_map.csv --------------------------------------------------------------------------------