-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathdeuda externa usa.py
44 lines (29 loc) · 1.15 KB
/
deuda externa usa.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import matplotlib.pyplot as plt
import requests, pandas as pd
def deuda(limit=10000):
# Preparo el request
base = 'https://www.transparency.treasury.gov/services/api/fiscal_service/v1/'
url = base + 'accounting/od/debt_to_penny'
params = {'sort':'-data_date', 'limit':limit}
# Hago el request y lo paso a un DataFrame
r = requests.get(url, params=params)
js = r.json()
df = pd.DataFrame(js['data'])
# Tomo solo las columnas que necesito
df = df.iloc[:,[0,1,2,3]]
# Renombro las columnas
df.columns = ['fecha','Externa','Intragov','Deuda Total']
# Seteo el indice
df.set_index('fecha', inplace=True)
# Paso el índice a formato datetime
df.index = pd.to_datetime(df.index)
# Transformo a numerico los valores de las columnas de deuda
df = df.apply(pd.to_numeric)
return df
deuda = deuda()
plt.style.use('dark_background')
fig, ax = plt.subplots(figsize=(12,6))
ax.plot(deuda)
ax.legend(labels=deuda.columns, loc='upper left', fontsize=14)
fig.suptitle('Deuda Externa USA', y=0.95, fontsize=16)
plt.show()