├── .gitignore ├── Assignments ├── A1 │ ├── Assign1.pdf │ ├── DescrStat.py │ └── datafile.txt ├── A2 │ ├── Assign2.pdf │ ├── BestIncome.txt │ ├── IncomeIntel.txt │ └── SurvIncome.txt ├── A3 │ └── Assign3.pdf ├── A4 │ ├── Assign4.pdf │ └── PhoneSurvey.xlsx ├── A5 │ └── Assign5.pdf ├── A6 │ └── Assign6.pdf ├── A7 │ ├── Assign7.pdf │ ├── get_r.py │ └── test_r.py ├── A8 │ └── Assign8.pdf └── A9 │ └── Assign9.pdf ├── Lab_Notes ├── Lab_2 │ ├── Example_Assignment_2_Layout.ipynb │ └── Lab_2_LinearRegression.ipynb └── Lab_3 │ ├── Python_Simulation_Lab-2018.ipynb │ ├── Simulation_Tutorial_in_R.Rmd │ ├── Simulation_Tutorial_in_R.md │ └── example_PS.py ├── Notes └── Chap_Git.pdf ├── Papers ├── CanannEvans2015.pdf ├── Gopalan2018.pdf └── UnitTesting_Ch7.pdf ├── README.md ├── Slides ├── PerspAnalysis_Collab.pdf ├── PerspAnalysis_CompEcon.pdf ├── PerspAnalysis_CompPolSci.pdf ├── PerspAnalysis_Ethics.pdf ├── PerspAnalysis_Exper.pdf ├── PerspAnalysis_Git.pdf ├── PerspAnalysis_Intro.pdf ├── PerspAnalysis_Obs.pdf ├── PerspAnalysis_Rsrch.pdf ├── PerspAnalysis_SimData.pdf └── PerspAnalysis_Surv.pdf └── Tutorials └── LaTeX ├── LaTeX_probset_template.pdf ├── LaTeX_probset_template.tex ├── LaTeX_tutorial.pdf └── pencildrawing.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UC-MACSS/persp-analysis_A18/HEAD/.gitignore -------------------------------------------------------------------------------- /Assignments/A1/Assign1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UC-MACSS/persp-analysis_A18/HEAD/Assignments/A1/Assign1.pdf -------------------------------------------------------------------------------- /Assignments/A1/DescrStat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UC-MACSS/persp-analysis_A18/HEAD/Assignments/A1/DescrStat.py -------------------------------------------------------------------------------- /Assignments/A1/datafile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UC-MACSS/persp-analysis_A18/HEAD/Assignments/A1/datafile.txt -------------------------------------------------------------------------------- /Assignments/A2/Assign2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UC-MACSS/persp-analysis_A18/HEAD/Assignments/A2/Assign2.pdf -------------------------------------------------------------------------------- /Assignments/A2/BestIncome.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UC-MACSS/persp-analysis_A18/HEAD/Assignments/A2/BestIncome.txt -------------------------------------------------------------------------------- /Assignments/A2/IncomeIntel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UC-MACSS/persp-analysis_A18/HEAD/Assignments/A2/IncomeIntel.txt -------------------------------------------------------------------------------- /Assignments/A2/SurvIncome.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UC-MACSS/persp-analysis_A18/HEAD/Assignments/A2/SurvIncome.txt -------------------------------------------------------------------------------- /Assignments/A3/Assign3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UC-MACSS/persp-analysis_A18/HEAD/Assignments/A3/Assign3.pdf -------------------------------------------------------------------------------- /Assignments/A4/Assign4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UC-MACSS/persp-analysis_A18/HEAD/Assignments/A4/Assign4.pdf -------------------------------------------------------------------------------- /Assignments/A4/PhoneSurvey.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UC-MACSS/persp-analysis_A18/HEAD/Assignments/A4/PhoneSurvey.xlsx -------------------------------------------------------------------------------- /Assignments/A5/Assign5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UC-MACSS/persp-analysis_A18/HEAD/Assignments/A5/Assign5.pdf -------------------------------------------------------------------------------- /Assignments/A6/Assign6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UC-MACSS/persp-analysis_A18/HEAD/Assignments/A6/Assign6.pdf -------------------------------------------------------------------------------- /Assignments/A7/Assign7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UC-MACSS/persp-analysis_A18/HEAD/Assignments/A7/Assign7.pdf -------------------------------------------------------------------------------- /Assignments/A7/get_r.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UC-MACSS/persp-analysis_A18/HEAD/Assignments/A7/get_r.py -------------------------------------------------------------------------------- /Assignments/A7/test_r.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UC-MACSS/persp-analysis_A18/HEAD/Assignments/A7/test_r.py -------------------------------------------------------------------------------- /Assignments/A8/Assign8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UC-MACSS/persp-analysis_A18/HEAD/Assignments/A8/Assign8.pdf -------------------------------------------------------------------------------- /Assignments/A9/Assign9.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UC-MACSS/persp-analysis_A18/HEAD/Assignments/A9/Assign9.pdf -------------------------------------------------------------------------------- /Lab_Notes/Lab_2/Example_Assignment_2_Layout.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UC-MACSS/persp-analysis_A18/HEAD/Lab_Notes/Lab_2/Example_Assignment_2_Layout.ipynb -------------------------------------------------------------------------------- /Lab_Notes/Lab_2/Lab_2_LinearRegression.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UC-MACSS/persp-analysis_A18/HEAD/Lab_Notes/Lab_2/Lab_2_LinearRegression.ipynb -------------------------------------------------------------------------------- /Lab_Notes/Lab_3/Python_Simulation_Lab-2018.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UC-MACSS/persp-analysis_A18/HEAD/Lab_Notes/Lab_3/Python_Simulation_Lab-2018.ipynb -------------------------------------------------------------------------------- /Lab_Notes/Lab_3/Simulation_Tutorial_in_R.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UC-MACSS/persp-analysis_A18/HEAD/Lab_Notes/Lab_3/Simulation_Tutorial_in_R.Rmd -------------------------------------------------------------------------------- /Lab_Notes/Lab_3/Simulation_Tutorial_in_R.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UC-MACSS/persp-analysis_A18/HEAD/Lab_Notes/Lab_3/Simulation_Tutorial_in_R.md -------------------------------------------------------------------------------- /Lab_Notes/Lab_3/example_PS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UC-MACSS/persp-analysis_A18/HEAD/Lab_Notes/Lab_3/example_PS.py -------------------------------------------------------------------------------- /Notes/Chap_Git.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UC-MACSS/persp-analysis_A18/HEAD/Notes/Chap_Git.pdf -------------------------------------------------------------------------------- /Papers/CanannEvans2015.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UC-MACSS/persp-analysis_A18/HEAD/Papers/CanannEvans2015.pdf -------------------------------------------------------------------------------- /Papers/Gopalan2018.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UC-MACSS/persp-analysis_A18/HEAD/Papers/Gopalan2018.pdf -------------------------------------------------------------------------------- /Papers/UnitTesting_Ch7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UC-MACSS/persp-analysis_A18/HEAD/Papers/UnitTesting_Ch7.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UC-MACSS/persp-analysis_A18/HEAD/README.md -------------------------------------------------------------------------------- /Slides/PerspAnalysis_Collab.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UC-MACSS/persp-analysis_A18/HEAD/Slides/PerspAnalysis_Collab.pdf -------------------------------------------------------------------------------- /Slides/PerspAnalysis_CompEcon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UC-MACSS/persp-analysis_A18/HEAD/Slides/PerspAnalysis_CompEcon.pdf -------------------------------------------------------------------------------- /Slides/PerspAnalysis_CompPolSci.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UC-MACSS/persp-analysis_A18/HEAD/Slides/PerspAnalysis_CompPolSci.pdf -------------------------------------------------------------------------------- /Slides/PerspAnalysis_Ethics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UC-MACSS/persp-analysis_A18/HEAD/Slides/PerspAnalysis_Ethics.pdf -------------------------------------------------------------------------------- /Slides/PerspAnalysis_Exper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UC-MACSS/persp-analysis_A18/HEAD/Slides/PerspAnalysis_Exper.pdf -------------------------------------------------------------------------------- /Slides/PerspAnalysis_Git.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UC-MACSS/persp-analysis_A18/HEAD/Slides/PerspAnalysis_Git.pdf -------------------------------------------------------------------------------- /Slides/PerspAnalysis_Intro.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UC-MACSS/persp-analysis_A18/HEAD/Slides/PerspAnalysis_Intro.pdf -------------------------------------------------------------------------------- /Slides/PerspAnalysis_Obs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UC-MACSS/persp-analysis_A18/HEAD/Slides/PerspAnalysis_Obs.pdf -------------------------------------------------------------------------------- /Slides/PerspAnalysis_Rsrch.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UC-MACSS/persp-analysis_A18/HEAD/Slides/PerspAnalysis_Rsrch.pdf -------------------------------------------------------------------------------- /Slides/PerspAnalysis_SimData.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UC-MACSS/persp-analysis_A18/HEAD/Slides/PerspAnalysis_SimData.pdf -------------------------------------------------------------------------------- /Slides/PerspAnalysis_Surv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UC-MACSS/persp-analysis_A18/HEAD/Slides/PerspAnalysis_Surv.pdf -------------------------------------------------------------------------------- /Tutorials/LaTeX/LaTeX_probset_template.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UC-MACSS/persp-analysis_A18/HEAD/Tutorials/LaTeX/LaTeX_probset_template.pdf -------------------------------------------------------------------------------- /Tutorials/LaTeX/LaTeX_probset_template.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UC-MACSS/persp-analysis_A18/HEAD/Tutorials/LaTeX/LaTeX_probset_template.tex -------------------------------------------------------------------------------- /Tutorials/LaTeX/LaTeX_tutorial.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UC-MACSS/persp-analysis_A18/HEAD/Tutorials/LaTeX/LaTeX_tutorial.pdf -------------------------------------------------------------------------------- /Tutorials/LaTeX/pencildrawing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UC-MACSS/persp-analysis_A18/HEAD/Tutorials/LaTeX/pencildrawing.png --------------------------------------------------------------------------------