Балаганский Никита Николаевич commited on
Commit
d29599d
1 Parent(s): ab5a12a

fix axis titles

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -81,7 +81,11 @@ def main():
81
  }
82
  )
83
  layout = go.Layout({
84
- "yaxis": {"title": "CAIF step probability"},
 
 
 
 
85
  "xaxis": {"title": "Entropy threshold"},
86
  "template": "plotly_white",
87
  })
 
81
  }
82
  )
83
  layout = go.Layout({
84
+ "yaxis": {
85
+ "title": "Speedup",
86
+ "tickvals": [0, 0.5, 0.8, 1],
87
+ "ticktext": ["1x", "2x", "5x", "10x"]
88
+ },
89
  "xaxis": {"title": "Entropy threshold"},
90
  "template": "plotly_white",
91
  })