QuantEcon / lecture-source-jl

Source files for "Lectures in Quantitative Economics" -- Julia version
https://julia.quantecon.org
BSD 3-Clause "New" or "Revised" License
131 stars 53 forks source link

Move to :png with GR #171

Closed jlperla closed 6 years ago

jlperla commented 6 years ago

From teaching, students frequently forget to Trust the notebook. The main place this causes issues is that the graphs disappear when they reopen it.

I think the solution is to use the png wherever plots comes up. That is,

using Plots

globally becomes

using Plots
gr(fmt=:png)

Getting Started with Julia

More Programming and Software Engineering Principles

Tools and Techniques

Dynamic Programming

Multiple Agent Models

Time Series Models

Dynamic Programming Squared

arnavs commented 6 years ago

Done at 62065ce.