Spaces:
Sleeping
Sleeping
Update dashboard.py
Browse files- dashboard.py +5 -5
dashboard.py
CHANGED
@@ -425,7 +425,7 @@ def create_overlay_plots(df):
|
|
425 |
legend.ncols = 6
|
426 |
legend.background_fill_color = 'white'
|
427 |
legend.border_line_color = 'black'
|
428 |
-
legend.label_text_font_size = '
|
429 |
legend.label_text_color = 'black'
|
430 |
legend.spacing = 10
|
431 |
legend.margin = 10
|
@@ -439,10 +439,10 @@ def create_overlay_plots(df):
|
|
439 |
max_y = 0
|
440 |
for i,obj_column in enumerate(df.columns):
|
441 |
curve = hv.Curve((df.index, np.log1p(df[obj_column])), 'Time', 'Occurrence Ratio', label=obj_column).opts(show_legend=True, fontsize={
|
442 |
-
'xlabel':
|
443 |
-
'ylabel':
|
444 |
-
'xticks':
|
445 |
-
'yticks':
|
446 |
})
|
447 |
curves.append(curve)
|
448 |
|
|
|
425 |
legend.ncols = 6
|
426 |
legend.background_fill_color = 'white'
|
427 |
legend.border_line_color = 'black'
|
428 |
+
legend.label_text_font_size = '20pt'
|
429 |
legend.label_text_color = 'black'
|
430 |
legend.spacing = 10
|
431 |
legend.margin = 10
|
|
|
439 |
max_y = 0
|
440 |
for i,obj_column in enumerate(df.columns):
|
441 |
curve = hv.Curve((df.index, np.log1p(df[obj_column])), 'Time', 'Occurrence Ratio', label=obj_column).opts(show_legend=True, fontsize={
|
442 |
+
'xlabel': 18,
|
443 |
+
'ylabel': 18,
|
444 |
+
'xticks': 18,
|
445 |
+
'yticks': 18,
|
446 |
})
|
447 |
curves.append(curve)
|
448 |
|