KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
bfi-reu-2019
★ 9
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
ssma
:
samp-servers.net mobile application
Nucleus_detection
:
Automate nucleus detection
goproxy-tunnel-server
:
A server to manage goproxy tunnel, thanks snail007's goproxy: https://github.com/snail007/goproxy
GMX
:
GMX——tools
laravel-passport-api
:
No description available.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
bfi-reu-2019
?
Download (.md)
# Numerical Optimization in Python (BFI REU 2019) Session 1: - [Brief Introduction to Numerical Optimization](./optimization_intro.ipynb) - [Application: Portfolio Optimization](./portfolio-optimization.ipynb) - Solutions [here](./portfolio-optimization--solutions.ipynb) Session 2: - [Brief Introduction to MLE](./Brief_Intro_to_MLE.ipynb) - [Application to Industrial Organization: Bresnehan and Reiss (1991)](./bresnahan-reiss-1991-discussion.ipynb) - [Implemention](replicate-bresnahan-reiss-1991.ipynb) - [Solutions](replicate-bresnahan-reiss-1991--solutions.ipynb) # Potentially Useful Resources ## Python Resources The following are good general references for learning topics in data science and economics with Python. * [Lectures in ](https://lectures.quantecon.org/)[Quantitative Economics](https://lectures.quantecon.org/), by Thomas J. Sargent and John Stachurski (QuantEcon) * [Python Data Science Handbook](https://jakevdp.github.io/PythonDataScienceHandbook/), by Jake VanderPlas (PDSH) * [Python for Data Analysis, 2nd Edition](https://github.com/wesm/pydata-book), by Wes McKinney (PDA) Also, take a look at the material for a class that was previously taught: * [Computational Methods in Economics (2019)](https://github.com/jmbejara/comp-econ-sp19) **Pandas Resources** - [Pandas Cheat Sheet from PandasDev](https://github.com/pandas-dev/pandas/blob/master/doc/cheatsheet/Pandas_Cheat_Sheet.pdf) - [Pandas Cheat Sheet from DataCamp](https://www.datacamp.com/community/blog/pandas-cheat-sheet-python) - Adding and Subtracting Time: - Timedelta: https://pandas.pydata.org/pandas-docs/stable/timedeltas.html - Accounting for leap years when subtracting a year---comparing `DateOffset` and `dateutil.relativedelta`: https://stackoverflow.com/a/31169977/1411791 **Misc** - [Formatting Strings](https://docs.python.org/3.4/library/string.html#format-string-syntax) ## Econometrics Textbooks Here are a few econometrics textbooks that I find helpful and recommend. - [A Guide to Econometrics, by Peter Kennedy.](http://a.co/dRFPs1R) This is a great econometrics book. It's not a textbook. Rather, it's a guide that provides a lot of of "big-picture" discussion of various econometric procedures. It's a nice companion to another textbook. It has very few equations and rather focuses on discussing the ideas behind different techniques and procedures. - [Econometrics, by Fumio Hayashi](http://a.co/5PLTSCx). This is the book that I mentioned that takes the unique pedogogical approach of deriving most common econometric procedures as special cases of the generalized method of moments (GMM). The idea is that if you first learn GMM, then you can learn many other techniques better and quicker by understanding how they can be derived from the fundamental principles in GMM. - [Econometric Analysis of Cross Section and Panel Data, by Jeffrey M Wooldridge](http://a.co/4yYpXyn) If you're interested in pursuing graduate school in economics, this is a highly regarded textbook. As the title implies, there is some emphasis on panel data models (which are quite important in many fields). - [Introduction to Econometrics (3rd ed.), by Stock and Watson](http://a.co/3tqB1aK) A good introduction to econometrics. Many undergraduate introductory econometrics courses use this book. (I assume that most of you have this book already.) - [Structural Macroeconometrics (2nd Ed.), by DeJong and Dave](http://a.co/1jBpnV2) I have found this book to be very useful. If you're interested in macroeconomics, this is a nice textbook to read through. ## Learning Git and GitHub - Playlist of videos for (learning Git with GitKraken)[https://www.youtube.com/playlist?list=PLe6EXFvnTV7-_41SpakZoTIYCgX4aMTdU] ## LaTeX Resources - [Customizations for the Metropolis Beamer Theme](https://bloerg.net/2015/12/10/modern-beamer-theme-revisited.html) ## R Basics - [Basic R Data Types](https://www.statmethods.net/input/datatypes.html) - There is a book called ["Applied Econometrics in R"](https://www.springer.com/us/book/9780387773162) that is very helpful. It also has an [R package](https://cran.r-project.org/web/packages/AER/) containing code and data to go along with the book. - Useful [tutorials on econometric procedures in R and Stata](https://dss.princeton.edu/training/). In particular, there is a Difference-in-Difference tutorial, Fixed/Random Effects, Logit, Time Series **Data Wrangling and Data Science in R** - [Data Wrangling Cheatsheet using R's tidyr and dply, from RStudio](https://www.rstudio.com/wp-content/uploads/2015/02/data-wrangling-cheatsheet.pdf) - [Tidyverse for Beginners Cheat Sheet](https://s3.amazonaws.com/assets.datacamp.com/blog_assets/Tidyverse+Cheat+Sheet.pdf) - [R for Data Science Book](http://r4ds.had.co.nz/) **Pandas and R** Pandas is a widely used Python package for data analysis. It serves as a useful comparison for similar R packages. - [Comparison of Pandas and R from Pandas Documentation](https://pandas.pydata.org/pandas-docs/stable/comparison_with_r.html) - [Translation of some of R's `dplyr` expressions to Pandas](http://nbviewer.jupyter.org/gist/TomAugspurger/6e052140eaa5fdb6e8c0)