Skip to content

Commit e1d91ee

Browse files
committed
fix_warning2
1 parent 6c4e6a9 commit e1d91ee

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lectures/heavy_tails.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -635,7 +635,9 @@ def extract_wb(varlist=['NY.GDP.MKTP.CD'],
635635
if varnames is not None:
636636
df.columns = varnames
637637
df = df[1:]
638-
return df
638+
639+
df1 =df[df.index.isin(countries_name)]
640+
return df1
639641
```
640642

641643
### Firm size

0 commit comments

Comments
 (0)