Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pull requeat #1

Open
wants to merge 37 commits into
base: sl/packages
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
9f50384
WIP: beginning plotting notebook
sglyon Jun 26, 2017
8eb01b2
Add function approx notebook
cc7768 Jun 26, 2017
7cb1ebe
WIP: some plotting material
sglyon Jun 26, 2017
8a2b809
WIP: some plotting material
sglyon Jun 26, 2017
0ef0da7
WIP: some plotting material
sglyon Jun 26, 2017
e1798b0
Add optimization and solver notebook
cc7768 Jun 26, 2017
c020991
add resources
emoszkowski Jun 26, 2017
62e2f22
--amend
emoszkowski Jun 26, 2017
36d4126
add AR1 sample mean example
emoszkowski Jun 26, 2017
3e9c6b8
update gitignore
emoszkowski Jun 26, 2017
e1fb3c4
add first notebook
emoszkowski Jun 26, 2017
7c768b0
add slides
emoszkowski Jun 26, 2017
83beebf
Rename to slides.ipynb
pearlzli Jun 26, 2017
e89fb9c
Add .h5 files to dsgejl/ gitignore
pearlzli Jun 26, 2017
0f45b4d
Add DSGE.jl exercise code
pearlzli Jun 26, 2017
21069e7
Merge branch 'master' of github.com:FRBNY-DSGE/CEF_2017_Workshop
sglyon Jun 27, 2017
d902430
ENH: added 'other packages' notebook
sglyon Jun 27, 2017
5c35f88
ENH: added economics-specific packages notebook
sglyon Jun 27, 2017
5479fe6
First draft of optimization/solvers nb
cc7768 Jun 27, 2017
b292e2f
CLN: common formatting amongst my notebooks
sglyon Jun 27, 2017
1f74848
add julia language intro notebook
abhig94 Jun 27, 2017
8174fff
ENH: some tweaks to the func_approx and solver notebooks
sglyon Jun 27, 2017
151a62e
Merge branch 'cc/packages'
sglyon Jun 27, 2017
6602805
Merge branch 'master' of github.com:FRBNY-DSGE/CEF_2017_Workshop
sglyon Jun 27, 2017
f085646
ENH: updated index.ipynb
sglyon Jun 27, 2017
bef853c
Move DSGE exercise code to notebook
pearlzli Jun 27, 2017
f2684b1
Clear output and remove answers in DSGE exercise
pearlzli Jun 27, 2017
f042602
Finish DSGE slides
pearlzli Jun 27, 2017
325ec6b
CLN: 'final' (haha) cleanup of packages notebooks
sglyon Jun 27, 2017
4181ec6
Merge branch 'master' of github.com:FRBNY-DSGE/CEF_2017_Workshop
sglyon Jun 27, 2017
7b8e840
reorganize julia language notebook
abhig94 Jun 27, 2017
c79f1b5
DOC: Added link to julialang discourse forum
sglyon Jun 27, 2017
562ab82
Update README.md
sglyon Jun 27, 2017
e759a1a
Add links to various packages and documentation.
cc7768 Jun 27, 2017
2fd6dba
Merge branch 'master' of github.com:FRBNY-DSGE/CEF_2017_Workshop
cc7768 Jun 27, 2017
228edf4
Run all notebooks so people can see output
cc7768 Jun 27, 2017
4faa176
Add contact info to README
pearlzli Jun 27, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
*.aux
.ipynb_checkpoints/
*.log
*.nav
*.out
*.toc
*.snm
*.vrb
31 changes: 31 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,34 @@
# CEF 2017 Workshop

Code and teaching material for "Modeling with Julia -- with an Application to the New York Fed DSGE", a workshop at [CEF 2017](http://comp-econ.org/CEF_2017/index.htm).

## Software

We assume that participants will have access to

* [Julia](http://julialang.org/)
* [IJulia](https://github.com/JuliaLang/IJulia.jl) and [Jupyter notebooks](https://jupyter.org/)
* [DSGE](https://github.com/FRBNY-DSGE/DSGE.jl)

For those using their own machines, it's possible install all of this (except DSGE.jl) and more in one go by installing

* [JuliaPro](http://juliacomputing.com/products/juliapro.html)

Make sure that you have the latest version, which is currently JuliaPro
0.5.1. A free version is now available.

## Resources

* [Cheat sheets](http://cheatsheets.quantecon.org/) for MATLAB and Python users
* [Lectures](http://lectures.quantecon.org/) for learning Julia, or for economics concepts
* [Discourse forum](http://discourse.quantecon.org/) for QuantEcon
* [Discourse forum](http://discourse.julialang.org/) for Julia questions
* [Julia Day](https://juliacomputing.com/blog/2016/11/01/Julia-Day-NY.html): videos with talks about Julia and finance

## Contact

* Abhi Gupta (New York Fed): [email protected]
* Pearl Li (New York Fed): [email protected]
* Erica Moszkowski (New York Fed): [email protected]
* Chase Coleman (NYU Stern): [email protected]
* Spencer Lyon (NYU Stern): [email protected]
1 change: 1 addition & 0 deletions dsgejl/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.ipynb_checkpoints

*.h5
*.jld
Loading