Skip to content

Commit 735bf78

Browse files
committed
Update heavy_tails.md
1 parent 418a891 commit 735bf78

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lectures/heavy_tails.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -467,8 +467,8 @@ fig, ax = plt.subplots()
467467
alpha = 1.0
468468
ax.plot(x, np.exp(- alpha * x), label='exponential', alpha=0.8)
469469
ax.plot(x, x**(- alpha), label='Pareto', alpha=0.8)
470-
ax.set_xlabel('X value', fontsize=12)
471-
ax.set_ylabel('CCDF', fontsize=12)
470+
ax.set_xlabel('X value')
471+
ax.set_ylabel('CCDF')
472472
ax.legend()
473473
plt.show()
474474
```
@@ -481,8 +481,8 @@ fig, ax = plt.subplots()
481481
alpha = 1.0
482482
ax.loglog(x, np.exp(- alpha * x), label='exponential', alpha=0.8)
483483
ax.loglog(x, x**(- alpha), label='Pareto', alpha=0.8)
484-
ax.set_xlabel('log value', fontsize=12)
485-
ax.set_ylabel('log prob', fontsize=12)
484+
ax.set_xlabel('log value')
485+
ax.set_ylabel('log prob')
486486
ax.legend()
487487
plt.show()
488488
```

0 commit comments

Comments
 (0)