Update app.py
Browse files
app.py
CHANGED
@@ -93,8 +93,7 @@ def linePlot_time_series(viz_type, weight, top_n):
|
|
93 |
print(type(result))
|
94 |
|
95 |
df = pd.DataFrame(result['data'], columns=result['headers'])
|
96 |
-
|
97 |
-
|
98 |
return df
|
99 |
|
100 |
|
|
|
93 |
print(type(result))
|
94 |
|
95 |
df = pd.DataFrame(result['data'], columns=result['headers'])
|
96 |
+
df.set_index('Index', inplace=True)
|
|
|
97 |
return df
|
98 |
|
99 |
|