Skip to content

Commit

Permalink
qq-plot multiples of 3 and horizontal
Browse files Browse the repository at this point in the history
  • Loading branch information
mmcky committed Apr 29, 2024
1 parent 15f9e14 commit 90bf2c2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lectures/heavy_tails.md
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,7 @@ We can now compare this with the exponential, log-normal, and pareto distributio

```{code-cell} ipython3
# Build figure
fig, axes = plt.subplots(3, 1, figsize=(8, 8))
fig, axes = plt.subplots(1, 3, figsize=(12, 4))
axes = axes.flatten()
labels = ['exponential', 'lognormal', 'Pareto']
for data, label, ax in zip(data_list, labels, axes):
Expand All @@ -665,7 +665,6 @@ plt.tight_layout()
plt.show()
```


### Power laws


Expand Down

0 comments on commit 90bf2c2

Please sign in to comment.