pwilczewski
commited on
Commit
·
87b620d
1
Parent(s):
427c962
bug fix
Browse files
app.py
CHANGED
@@ -4,10 +4,10 @@ import numpy as np
|
|
4 |
from data_proc import load_equity_data, load_yield_curve_data, load_credit_spread_data, load_fed_balance_sheet
|
5 |
from data_proc import plot_treasury_curves, plot_credit_spreads, plot_fed_balance_sheet
|
6 |
|
7 |
-
loser_frame, largest_frame = load_equity_data(
|
8 |
-
yc_frame = load_yield_curve_data(
|
9 |
-
spread_frame = load_credit_spread_data(
|
10 |
-
fed_frame = load_fed_balance_sheet(
|
11 |
|
12 |
with gr.Blocks() as crisis_dashboard:
|
13 |
gr.Markdown("<font size=36><center>Banking Crisis Dashboard</center></font>")
|
|
|
4 |
from data_proc import load_equity_data, load_yield_curve_data, load_credit_spread_data, load_fed_balance_sheet
|
5 |
from data_proc import plot_treasury_curves, plot_credit_spreads, plot_fed_balance_sheet
|
6 |
|
7 |
+
loser_frame, largest_frame = load_equity_data()
|
8 |
+
yc_frame = load_yield_curve_data()
|
9 |
+
spread_frame = load_credit_spread_data()
|
10 |
+
fed_frame = load_fed_balance_sheet()
|
11 |
|
12 |
with gr.Blocks() as crisis_dashboard:
|
13 |
gr.Markdown("<font size=36><center>Banking Crisis Dashboard</center></font>")
|