Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions lectures/util_rand_resp.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,11 @@ Lars Ljungqvist {cite}`ljungqvist1993unified` 分析了受访者是否如实回

```{code-cell} ipython3
import matplotlib.pyplot as plt
import matplotlib as mpl
FONTPATH = "fonts/SourceHanSerifSC-SemiBold.otf"
mpl.font_manager.fontManager.addfont(FONTPATH)
plt.rcParams['font.family'] = ['Source Han Serif SC', 'DejaVu Sans']

import numpy as np
```

Expand Down
Loading