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