Marcos0807 commited on
Commit
7233e72
·
verified ·
1 Parent(s): 00f47e0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -12,8 +12,9 @@ import seaborn as sns
12
 
13
 
14
 
15
- key_alphacast = Alphacast("ak_rjVLScLXFCHwimxt5Qew")
16
- dataset = key_alphacast.datasets.dataset(5664)
 
17
  df = dataset.download_data(format = "pandas", startDate=None, endDate=None, filterVariables = [], filterEntities = {})
18
  data = df[["country","Date","Real Consumption at constant 2017 national prices (In mil. 2017US$)",
19
  "Average annual hours worked by persons engaged",
 
12
 
13
 
14
 
15
+ key_alphacast = "ak_rjVLScLXFCHwimxt5Qew"
16
+ alphacast = Alphacast(key_alphacast)
17
+ dataset = alphacast.datasets.dataset(5664)
18
  df = dataset.download_data(format = "pandas", startDate=None, endDate=None, filterVariables = [], filterEntities = {})
19
  data = df[["country","Date","Real Consumption at constant 2017 national prices (In mil. 2017US$)",
20
  "Average annual hours worked by persons engaged",