zavavan commited on
Commit
3fa7c40
·
verified ·
1 Parent(s): 068a036

Update dashboard.py

Browse files
Files changed (1) hide show
  1. dashboard.py +7 -1
dashboard.py CHANGED
@@ -438,7 +438,13 @@ def create_overlay_plots(df):
438
  curves = []
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)
 
 
 
 
 
 
442
  curves.append(curve)
443
 
444
 
 
438
  curves = []
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': 16,
443
+ 'ylabel': 16,
444
+ 'xticks': 16,
445
+ 'yticks': 16,
446
+ }, axis_label_text_color='black',
447
+ axis_tick_text_color='black')
448
  curves.append(curve)
449
 
450