Skip to content

Commit 5c01d23

Browse files
committed
[heavy_tail] Update editorial suggestions
1 parent 240e65f commit 5c01d23

File tree

1 file changed

+20
-3
lines changed

1 file changed

+20
-3
lines changed

lectures/heavy_tails.md

+20-3
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,12 @@ register_matplotlib_converters()
3939

4040
## Overview
4141

42+
Studying heavy-tailed distributions is essential for accurately comprehending real-world phenomena.
43+
44+
Unlike standard Gaussian distributions, heavy-tailed distributions account for extreme events with greater probabilities.
45+
46+
This understanding is crucial in analyzing wealth, firm size, and city size distributions, as well as other areas such as business cycles and political economy.
47+
4248
In this section we give some motivation for the lecture.
4349

4450
### Introduction: light tails
@@ -112,7 +118,7 @@ too much from the mean.
112118
Putting this another way, light-tailed distributions are those that
113119
rarely generate extreme values.
114120

115-
(A more formal definition is given below.)
121+
(A more formal definition is given [below](https://intro.quantecon.org/heavy_tails.html#light-and-heavy-tails).)
116122

117123
Many statisticians and econometricians
118124
use rules of thumb such as "outcomes more than four or five
@@ -196,9 +202,19 @@ The histogram also looks different to the histogram of the normal
196202
distribution:
197203

198204
```{code-cell} ipython3
205+
r = np.random.standard_t(df=5, size=1000)
206+
199207
fig, ax = plt.subplots()
200208
ax.hist(r, bins=60, alpha=0.4, label='bitcoin returns', density=True)
209+
210+
xmin, xmax = plt.xlim()
211+
x = np.linspace(xmin, xmax, 100)
212+
p = norm.pdf(x, np.mean(r), np.std(r))
213+
ax.plot(x, p, 'k', linewidth=2, label='normal distribution')
214+
201215
ax.set_xlabel('returns', fontsize=12)
216+
ax.legend()
217+
202218
plt.show()
203219
```
204220

@@ -246,14 +262,15 @@ like
246262
* forecasting
247263
* taxation (across a heavy-tailed income distribution), etc.
248264

249-
We return to these points below.
265+
We return to these points [below](https://intro.quantecon.org/heavy_tails.html#why-do-heavy-tails-matter).
250266

251267

252268

253269

254270

255271

256272
## Visual comparisons
273+
In this section, we will introduce important concepts such as the Pareto distribution, Counter CDFs, and Power laws, which aid in recognizing heavy-tailed distributions.
257274

258275
Later we will provide a mathematical definition of the difference between
259276
light and heavy tails.
@@ -523,7 +540,7 @@ plt.show()
523540
As with the CCDF, the empirical CCDF from the Pareto distributions is
524541
approximately linear in a log-log plot.
525542

526-
We will use this idea below when we look at real data.
543+
We will use this idea [below](https://intro.quantecon.org/heavy_tails.html#heavy-tails-in-economic-cross-sections) when we look at real data.
527544

528545

529546
### Power laws

0 commit comments

Comments
 (0)