[email protected] commited on
Commit
8ec5131
·
1 Parent(s): ef68dba
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -89,7 +89,12 @@ def init_asset_plot(df):
89
  # autosize=False,
90
  # width=650,
91
  # height=600,
92
- title=f"Accuracy per Asset"
 
 
 
 
 
93
  )
94
  return fig
95
 
 
89
  # autosize=False,
90
  # width=650,
91
  # height=600,
92
+ title=f"Accuracy per Asset",
93
+ polar=dict(
94
+ radialaxis=dict(
95
+ visible=True,
96
+ range=[0, 6] # Adjust this range to zoom
97
+ )),
98
  )
99
  return fig
100