Comments by @longye-tian ## Content - [x] "Economist call" -> "Economists call" - [x] "whether it expenditures" -> "whether its expenditures" - [x] "if its expenditures exceeds it tax collections" -> "if its expenditures exceed its tax collections" - [x] "it tax" -> "its tax" - [x] check quotation marks across lectures - [x] *start* and *stop* does not satisfy bold criteria in the style sheet - [x] $\exp\left(\frac{m_t^d}{p_t}\right)$ -> $\exp\left(m_t^d - p_t \right)$ - [x] Explain what $\alpha$ represents - [x] In (13.3) we can delete $\alpha > 0$ - [x] Explain what is a forcing variable - [x] Explain what is forward-looking behavior - [x] Setting $\delta =\frac{\alpha}{1+\alpha}$ let’s us represent the preceding equation -> Setting $\delta =\frac{\alpha}{1+\alpha}$, let's represent the preceding equation - [x] Define $\tilde \gamma = 1$ - [x] unbold bold words that should use emphasis - [x] Define $\theta^*_{T}$. - [x] Define and discuss Cagan demand function. - [x] Unbold "upward" "downward" and "falling". - [x] $\pi^1$ -> $\pi^1_{T_1}$ $\pi^2$ -> $\pi^2_{T_1}$. - [x] "permanent shock to the $\{\mu\}$" -> "permanent shock to the $\{\mu_t\}$" - [x] Fix the description on the plot positions. - [x] Change the legend of the last graph to $p_t$ for smooth $m_{T_1}$ and $p_t$ for jumpy $m_{T_1}$ ## Code - [x] Add comment to the parameters in the `namedtuple` and put the default values as the default values for the function. ``` # parameters T = 80 T1 = 60 α = 5 m0 = 1 μ0 = 0.5 μ_star = 0 ``` - [x] Merge the two lines and add comments to the code: ``` model_params = model.m0, model.T, model.π_end, model.μ_seq, model.α, model.δ m0, T, π_end, μ_seq, α, δ = model_params ``` - [x] Put the code for visualization into a single for loop.
Comments by @longye-tian
Content
Code
namedtupleand put the default values as the default values for the function.