Skip to content
This repository was archived by the owner on Apr 24, 2020. It is now read-only.

Commit c74f71d

Browse files
committed
minor fixes
1 parent 464975f commit c74f71d

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

source/rst/heavy_tails.rst

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -370,10 +370,10 @@ The figure below provides one example, using simulated data.
370370

371371
The rank-size plots shows draws from three different distributions: folded normal, chi-squared with 1 degree of freedom and Pareto.
372372

373-
In each case, the largest 5\% of 1,000 draws are shown.
374-
375373
The Pareto sample produces a straight line, while the lines produced by the other samples are concave.
376374

375+
You are asked to reproduce this figure in the exercises.
376+
377377
.. _rank_size_fig1:
378378

379379
.. figure::
@@ -416,6 +416,8 @@ Exercise 4
416416

417417
Replicate the rank-size plot figure :ref:`presented above <rank_size_fig1>`.
418418

419+
For each sample that you plot, you will need to reverse sort it, from largest to smallest, in order to generate the plot.
420+
419421
Use ``np.random.seed(13)`` to set the seed.
420422

421423

@@ -574,7 +576,7 @@ First we will create a function and then generate the plot
574576

575577
.. code:: ipython3
576578
577-
def rank_size_data(data, c=0.95):
579+
def rank_size_data(data, c=1.0):
578580
"""
579581
Generate rank-size data corresponding to distribution data.
580582

source/rst/kesten_processes.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -523,8 +523,8 @@ In this setting, firm dynamics can be expressed as
523523
.. math::
524524
:label: firm_dynam_ee
525525
526-
s_{t+1} = e_{t+1} \mathbb 1 \{s_t < \bar s\}
527-
+ (a_{t+1} s_t + b_{t+1}) \mathbb 1 \{s_t \geq \bar s\}
526+
s_{t+1} = e_{t+1} \mathbb{1}\{s_t < \bar s\} +
527+
(a_{t+1} s_t + b_{t+1}) \mathbb{1}\{s_t \geq \bar s\}
528528
529529
Here
530530

0 commit comments

Comments
 (0)