oconnoob commited on
Commit
764b445
·
1 Parent(s): 819f317

Update app/helpers.py

Browse files
Files changed (1) hide show
  1. app/helpers.py +4 -3
app/helpers.py CHANGED
@@ -432,16 +432,17 @@ def make_content_safety_fig(cont_safety_summary):
432
  for key in cont_safety_summary:
433
  d['label'] += [' '.join(key.split('_')).title()]
434
  d['severity'] += [cont_safety_summary[key]]
435
- #d['color'] += ['rgba(107, 43, 214, 1)']
436
 
437
- # Create the figure (n.b. repetitive color info but was running into plotly bugs) color='color',
438
- content_fig = px.bar(d, x='severity', y='label', color_discrete_map={
439
  'Crime Violence': 'rgba(107, 43, 214, 1)',
440
  'Alcohol': 'rgba(107, 43, 214, 0.1)',
441
  'Accidents': 'rgba(107, 43, 214, 0.1)'})
442
 
443
  # Update the content figure plot
444
  content_fig.update_layout({'plot_bgcolor': 'rgba(107, 43, 214, 0.1)'})
 
445
 
446
  # Scales axes appropriately
447
  content_fig.update_xaxes(range=[0, 1])
 
432
  for key in cont_safety_summary:
433
  d['label'] += [' '.join(key.split('_')).title()]
434
  d['severity'] += [cont_safety_summary[key]]
435
+ d['color'] += ['rgba(107, 43, 214, 1)']
436
 
437
+ # Create the figure (n.b. repetitive color info but was running into plotly bugs)
438
+ content_fig = px.bar(d, x='severity', y='label', color='color', color_discrete_map={
439
  'Crime Violence': 'rgba(107, 43, 214, 1)',
440
  'Alcohol': 'rgba(107, 43, 214, 0.1)',
441
  'Accidents': 'rgba(107, 43, 214, 0.1)'})
442
 
443
  # Update the content figure plot
444
  content_fig.update_layout({'plot_bgcolor': 'rgba(107, 43, 214, 0.1)'})
445
+ content_fig.update(content_fig, showlegend="false")
446
 
447
  # Scales axes appropriately
448
  content_fig.update_xaxes(range=[0, 1])