Skip to content

Commit db5a05f

Browse files
Update lectures/mccall_model.md
Co-authored-by: Humphrey Yang <39026988+HumphreyYang@users.noreply.github.com>
1 parent 3711f5b commit db5a05f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lectures/mccall_model.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -771,10 +771,10 @@ Here is one solution:
771771

772772
```{code-cell} python3
773773
class McCallModelContinuous(NamedTuple):
774-
c: float # unemployment compensation
775-
β: float # discount factor
776-
σ: float # scale parameter in lognormal distribution
777-
μ: float # location parameter in lognormal distribution
774+
c: float # unemployment compensation
775+
β: float # discount factor
776+
σ: float # scale parameter in lognormal distribution
777+
μ: float # location parameter in lognormal distribution
778778
w_draws: jnp.ndarray # draws of wages for Monte Carlo
779779
780780
def create_mccall_continuous(c=25, β=0.99, σ=0.5, μ=2.5, mc_size=1000, seed=0):

0 commit comments

Comments
 (0)