AMKhakbaz commited on
Commit
9b3bcad
·
verified ·
1 Parent(s): 3960861

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -45,7 +45,7 @@ def figo(plot_type, df, title, xlabel=None, ylabel=None, legend_title=None, colo
45
  y=sorted_data.index,
46
  mode='lines+markers+text',
47
  name=column,
48
- text=sorted_data[column].round(0),
49
  textposition="middle right"
50
  ))
51
 
 
45
  y=sorted_data.index,
46
  mode='lines+markers+text',
47
  name=column,
48
+ text=sorted_data[column].round(2)*100,
49
  textposition="middle right"
50
  ))
51