Skip to content

Commit 6cc6c4b

Browse files
authored
[FIX] Fix string warnings (#566)
* fix string syntax warnings * update one missing case
1 parent ea4253a commit 6cc6c4b

18 files changed

+36
-36
lines changed

lectures/ar1_processes.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ for t in range(sim_length):
180180
mu = a * mu + b
181181
v = a**2 * v + c**2
182182
ax.plot(grid, norm.pdf(grid, loc=mu, scale=np.sqrt(v)),
183-
label=f"$\psi_{t}$",
183+
label=fr"$\psi_{t}$",
184184
alpha=0.7)
185185
186186
ax.legend(bbox_to_anchor=[1.05,1],loc=2,borderaxespad=1)
@@ -267,7 +267,7 @@ plot_density_seq(ax, mu_0=4.0)
267267
mu_star = b / (1 - a)
268268
std_star = np.sqrt(c**2 / (1 - a**2)) # square root of v_star
269269
psi_star = norm.pdf(grid, loc=mu_star, scale=std_star)
270-
ax.plot(grid, psi_star, 'k-', lw=2, label="$\psi^*$")
270+
ax.plot(grid, psi_star, 'k-', lw=2, label=r"$\psi^*$")
271271
ax.legend()
272272
273273
plt.show()

lectures/cobweb.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ def plot45(model, pmin, pmax, p0, num_arrows=5):
271271
272272
ax.plot(pgrid, g(model, pgrid), 'b-',
273273
lw=2, alpha=0.6, label='g')
274-
ax.plot(pgrid, pgrid, lw=1, alpha=0.7, label='$45\degree$')
274+
ax.plot(pgrid, pgrid, lw=1, alpha=0.7, label=r'$45\degree$')
275275
276276
x = p0
277277
xticks = [pmin]

lectures/eigen_I.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ def circle_transform(A=np.array([[-1, 2], [0, 1]])):
265265
ax[0].plot(x, y, color='black', zorder=1)
266266
ax[0].scatter(a_1, b_1, c=colors, alpha=1, s=60,
267267
edgecolors='black', zorder=2)
268-
ax[0].set_title("unit circle in $\mathbb{R}^2$")
268+
ax[0].set_title(r"unit circle in $\mathbb{R}^2$")
269269
270270
x1 = x.reshape(1, -1)
271271
y1 = y.reshape(1, -1)
@@ -542,15 +542,15 @@ def grid_composition_transform(A=np.array([[1, -1], [1, 1]]),
542542
543543
# Plot grid points
544544
ax[0].scatter(xygrid[0], xygrid[1], s=36, c=colors, edgecolor="none")
545-
ax[0].set_title("points $x_1, x_2, \cdots, x_k$")
545+
ax[0].set_title(r"points $x_1, x_2, \cdots, x_k$")
546546
547547
# Plot intermediate grid points
548548
ax[1].scatter(uvgrid[0], uvgrid[1], s=36, c=colors, edgecolor="none")
549-
ax[1].set_title("points $Bx_1, Bx_2, \cdots, Bx_k$")
549+
ax[1].set_title(r"points $Bx_1, Bx_2, \cdots, Bx_k$")
550550
551551
# Plot transformed grid points
552552
ax[2].scatter(abgrid[0], abgrid[1], s=36, c=colors, edgecolor="none")
553-
ax[2].set_title("points $ABx_1, ABx_2, \cdots, ABx_k$")
553+
ax[2].set_title(r"points $ABx_1, ABx_2, \cdots, ABx_k$")
554554
555555
plt.show()
556556
```

lectures/equalizing_difference.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ We'll use the Python module 'sympy' to compute partial derivatives of $\phi$ wit
374374
Define symbols
375375
376376
```{code-cell} ipython3
377-
γ_h, γ_c, w_h0, D = symbols('\gamma_h, \gamma_c, w_0^h, D', real=True)
377+
γ_h, γ_c, w_h0, D = symbols(r'\gamma_h, \gamma_c, w_0^h, D', real=True)
378378
R, T = Symbol('R', real=True), Symbol('T', integer=True)
379379
```
380380

lectures/geom_series.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -761,7 +761,7 @@ T_max = 10
761761
T=np.arange(0, T_max+1)
762762
763763
rs, gs = (0.9, 0.5, 0.4001, 0.4), (0.4, 0.4, 0.4, 0.5),
764-
comparisons = ('$\gg$', '$>$', r'$\approx$', '$<$')
764+
comparisons = (r'$\gg$', '$>$', r'$\approx$', '$<$')
765765
for r, g, comp in zip(rs, gs, comparisons):
766766
ax.plot(finite_lease_pv_true(T, g, r, x_0), label=f'r(={r}) {comp} g(={g})')
767767

lectures/greek_square.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -693,7 +693,7 @@ fig, axs = plt.subplots(1, 2, figsize=(12, 6), dpi=500)
693693
axs[0].plot(np.round(ratios_λ1, 6),
694694
label=r'$\frac{y_t}{y_{t-1}}$', linewidth=3)
695695
axs[0].axhline(y=Λ[1], color='red', linestyle='--',
696-
label='$\lambda_2$', alpha=0.5)
696+
label=r'$\lambda_2$', alpha=0.5)
697697
axs[0].set_xlabel('t', size=18)
698698
axs[0].set_ylabel(r'$\frac{y_t}{y_{t-1}}$', size=18)
699699
axs[0].set_title(r'$\frac{y_t}{y_{t-1}}$ after Muting $\lambda_1$',
@@ -704,7 +704,7 @@ axs[0].legend()
704704
axs[1].plot(ratios_λ2, label=r'$\frac{y_t}{y_{t-1}}$',
705705
linewidth=3)
706706
axs[1].axhline(y=Λ[0], color='green', linestyle='--',
707-
label='$\lambda_1$', alpha=0.5)
707+
label=r'$\lambda_1$', alpha=0.5)
708708
axs[1].set_xlabel('t', size=18)
709709
axs[1].set_ylabel(r'$\frac{y_t}{y_{t-1}}$', size=18)
710710
axs[1].set_title(r'$\frac{y_t}{y_{t-1}}$ after Muting $\lambda_2$',

lectures/heavy_tails.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ for ax, s in zip(axes[:2], s_vals):
361361
data = np.random.randn(n) * s
362362
ax.plot(list(range(n)), data, linestyle='', marker='o', alpha=0.5, ms=4)
363363
ax.vlines(list(range(n)), 0, data, lw=0.2)
364-
ax.set_title(f"draws from $N(0, \sigma^2)$ with $\sigma = {s}$", fontsize=11)
364+
ax.set_title(fr"draws from $N(0, \sigma^2)$ with $\sigma = {s}$", fontsize=11)
365365
366366
ax = axes[2]
367367
distribution = cauchy()

lectures/inequality.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,7 @@ mystnb:
522522
fix, ax = plot_inequality_measures(σ_vals,
523523
ginis,
524524
'simulated',
525-
'$\sigma$',
525+
r'$\sigma$',
526526
'Gini coefficients')
527527
plt.show()
528528
```
@@ -888,7 +888,7 @@ ax.plot(years, df_topshares["topshare_n_wealth"],
888888
ax.plot(years, df_topshares["topshare_t_income"],
889889
marker='o', label="total income")
890890
ax.set_xlabel("year")
891-
ax.set_ylabel("top $10\%$ share")
891+
ax.set_ylabel(r"top $10\%$ share")
892892
ax.legend()
893893
plt.show()
894894
```

lectures/input_output.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -210,9 +210,9 @@ ax.plot(np.linspace(55, 380, 100), (50-0.9*np.linspace(55, 380, 100))/(-1.46), c
210210
ax.plot(np.linspace(-1, 400, 100), (60+0.16*np.linspace(-1, 400, 100))/0.83, color="r")
211211
ax.plot(np.linspace(250, 395, 100), (62-0.04*np.linspace(250, 395, 100))/0.33, color="b")
212212
213-
ax.text(130, 38, "$(1-a_{11})x_1 + a_{12}x_2 \geq d_1$", size=10)
214-
ax.text(10, 105, "$-a_{21}x_1 + (1-a_{22})x_2 \geq d_2$", size=10)
215-
ax.text(150, 150, "$a_{01}x_1 +a_{02}x_2 \leq x_0$", size=10)
213+
ax.text(130, 38, r"$(1-a_{11})x_1 + a_{12}x_2 \geq d_1$", size=10)
214+
ax.text(10, 105, r"$-a_{21}x_1 + (1-a_{22})x_2 \geq d_2$", size=10)
215+
ax.text(150, 150, r"$a_{01}x_1 +a_{02}x_2 \leq x_0$", size=10)
216216
217217
# Draw the feasible region
218218
feasible_set = Polygon(np.array([[301, 151],
@@ -466,8 +466,8 @@ ax.vlines(0, -1, 250)
466466
ax.plot(np.linspace(4.75, 49, 100), (4-0.9*np.linspace(4.75, 49, 100))/(-0.16), color="r")
467467
ax.plot(np.linspace(0, 50, 100), (33+1.46*np.linspace(0, 50, 100))/0.83, color="r")
468468
469-
ax.text(15, 175, "$(1-a_{11})p_1 - a_{21}p_2 \leq a_{01}w$", size=10)
470-
ax.text(30, 85, "$-a_{12}p_1 + (1-a_{22})p_2 \leq a_{02}w$", size=10)
469+
ax.text(15, 175, r"$(1-a_{11})p_1 - a_{21}p_2 \leq a_{01}w$", size=10)
470+
ax.text(30, 85, r"$-a_{12}p_1 + (1-a_{22})p_2 \leq a_{02}w$", size=10)
471471
472472
# Draw the feasible region
473473
feasible_set = Polygon(np.array([[17, 69],

lectures/intro_supply_demand.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ ab_grid = np.linspace(a, b, 400)
348348
fig, ax = plt.subplots()
349349
ax.plot(x_grid, f(x_grid), label="$f$", color="k")
350350
ax.fill_between(ab_grid, [0] * len(ab_grid), f(ab_grid),
351-
label="$\int_a^b f(x) dx$")
351+
label=r"$\int_a^b f(x) dx$")
352352
ax.legend()
353353
plt.show()
354354
```

lectures/laffer_adaptive.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -379,15 +379,15 @@ def draw_iterations(π0s, model, line_params, π_bars, num_steps):
379379
380380
axes[2].axhline(y=π_bars[0], color='grey', linestyle='--', lw=1.5, alpha=0.6)
381381
axes[2].axhline(y=π_bars[1], color='grey', linestyle='--', lw=1.5, alpha=0.6)
382-
axes[2].text(num_steps * 1.07, π_bars[0], '$\pi_l$', verticalalignment='center',
382+
axes[2].text(num_steps * 1.07, π_bars[0], r'$\pi_l$', verticalalignment='center',
383383
color='grey', size=10)
384-
axes[2].text(num_steps * 1.07, π_bars[1], '$\pi_u$', verticalalignment='center',
384+
axes[2].text(num_steps * 1.07, π_bars[1], r'$\pi_u$', verticalalignment='center',
385385
color='grey', size=10)
386386
387387
axes[0].set_ylabel('$m_t$')
388388
axes[1].set_ylabel('$p_t$')
389-
axes[2].set_ylabel('$\pi_t$')
390-
axes[3].set_ylabel('$\mu_t$')
389+
axes[2].set_ylabel(r'$\pi_t$')
390+
axes[3].set_ylabel(r'$\mu_t$')
391391
axes[3].set_xlabel('timestep')
392392
axes[3].xaxis.set_major_locator(MaxNLocator(integer=True))
393393

lectures/lln_clt.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ ax.set_xlim(xmin, xmax)
491491
ax.hist(Y, bins=60, alpha=0.4, density=True)
492492
xgrid = np.linspace(xmin, xmax, 200)
493493
ax.plot(xgrid, st.norm.pdf(xgrid, scale=σ),
494-
'k-', lw=2, label='$N(0, \sigma^2)$')
494+
'k-', lw=2, label=r'$N(0, \sigma^2)$')
495495
ax.set_xlabel(r"$Y_n$", size=12)
496496
ax.set_ylabel(r"$density$", size=12)
497497
@@ -543,7 +543,7 @@ ax.hist(Y, bins=60, alpha=0.4, density=True)
543543
ax.set_xlabel(r"$Y_n$", size=12)
544544
ax.set_ylabel(r"$density$", size=12)
545545
xgrid = np.linspace(xmin, xmax, 200)
546-
ax.plot(xgrid, st.norm.pdf(xgrid, scale=σ), 'k-', lw=2, label='$N(0, \sigma^2)$')
546+
ax.plot(xgrid, st.norm.pdf(xgrid, scale=σ), 'k-', lw=2, label=r'$N(0, \sigma^2)$')
547547
ax.legend()
548548
549549
plt.show()

lectures/markov_chains_II.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ for i in range(n):
328328
# Generate time series starting at different x_0
329329
X = mc.simulate(ts_length, init=x0)
330330
p_hat = (X == i).cumsum() / np.arange(1, ts_length+1)
331-
axes[i].plot(p_hat, label=f'$x_0 = \, {x0} $')
331+
axes[i].plot(p_hat, label=fr'$x_0 = \, {x0} $')
332332
333333
axes[i].legend()
334334
plt.tight_layout()

lectures/money_inflation_nonlinear.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -187,14 +187,14 @@ def plot_laffer(model, πs):
187187
# Plot the function
188188
plt.plot(x_values, y_values,
189189
label=f'Laffer curve')
190-
for π, label in zip(πs, ['$\pi_l$', '$\pi_u$']):
190+
for π, label in zip(πs, [r'$\pi_l$', r'$\pi_u$']):
191191
plt.text(π, plt.gca().get_ylim()[0]*2,
192192
label, horizontalalignment='center',
193193
color='brown', size=10)
194194
plt.axvline(π, color='brown', linestyle='--')
195195
plt.axhline(g, color='red', linewidth=0.5,
196196
linestyle='--', label='g')
197-
plt.xlabel('$\pi$')
197+
plt.xlabel(r'$\pi$')
198198
plt.ylabel('seigniorage')
199199
plt.legend()
200200
plt.show()
@@ -373,8 +373,8 @@ def draw_iterations(p0s, model, line_params, p0_bars, num_steps):
373373
# Draw labels
374374
axes[0].set_ylabel('$m_t$')
375375
axes[1].set_ylabel('$p_t$')
376-
axes[2].set_ylabel('$\pi_t$')
377-
axes[3].set_ylabel('$\mu_t$')
376+
axes[2].set_ylabel(r'$\pi_t$')
377+
axes[3].set_ylabel(r'$\mu_t$')
378378
axes[3].set_xlabel('timestep')
379379
380380
for p_0, label in [(p0_bars[0], '$p_0=p_l$'), (p0_bars[1], '$p_0=p_u$')]:

lectures/olg.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ fig, ax = plt.subplots(figsize=(6, 6))
446446
ymin, ymax = np.min(k_grid_next), np.max(k_grid_next)
447447
448448
ax.plot(k_grid, k_grid_next, lw=2, alpha=0.6, label='$g$')
449-
ax.plot(k_grid, k_grid, 'k-', lw=1, alpha=0.7, label='$45^{\circ}$')
449+
ax.plot(k_grid, k_grid, 'k-', lw=1, alpha=0.7, label=r'$45^{\circ}$')
450450
451451
452452
ax.legend(loc='upper left', frameon=False, fontsize=12)
@@ -722,7 +722,7 @@ fig, ax = plt.subplots(figsize=(6, 6))
722722
ymin, ymax = np.min(k_grid_next), np.max(k_grid_next)
723723
724724
ax.plot(k_grid, k_grid_next, lw=2, alpha=0.6, label='$g$')
725-
ax.plot(k_grid, k_grid, 'k-', lw=1, alpha=0.7, label='$45^{\circ}$')
725+
ax.plot(k_grid, k_grid, 'k-', lw=1, alpha=0.7, label=r'$45^{\circ}$')
726726
727727
728728
ax.legend(loc='upper left', frameon=False, fontsize=12)

lectures/prob_dist.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@ for μ, σ in zip(μ_vals, σ_vals):
496496
u = scipy.stats.lognorm(σ, scale=np.exp(μ))
497497
ax.plot(x_grid, u.pdf(x_grid),
498498
alpha=0.5, lw=2,
499-
label=f'$\mu={μ}, \sigma={σ}$')
499+
label=fr'$\mu={μ}, \sigma={σ}$')
500500
ax.set_xlabel('x')
501501
ax.set_ylabel('PDF')
502502
plt.legend()

lectures/solow.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ def plot45(kstar=None):
146146
147147
lb = r'$g(k) = sAk^{\alpha} + (1 - \delta)k$'
148148
ax.plot(xgrid, g_values, lw=2, alpha=0.6, label=lb)
149-
ax.plot(xgrid, xgrid, 'k-', lw=1, alpha=0.7, label='$45^{\circ}$')
149+
ax.plot(xgrid, xgrid, 'k-', lw=1, alpha=0.7, label=r'$45^{\circ}$')
150150
151151
if kstar:
152152
fps = (kstar,)

lectures/unpleasant.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ def plot_path(m0_arr, model, length=15):
481481
ax.set_title(titles[i])
482482
483483
axs[0, 1].hlines(model.m0_check, 0, length, color='r', linestyle='--')
484-
axs[0, 1].text(length * 0.8, model.m0_check * 0.9, '$\check{m}_0$')
484+
axs[0, 1].text(length * 0.8, model.m0_check * 0.9, r'$\check{m}_0$')
485485
plt.show()
486486
```
487487

0 commit comments

Comments
 (0)