Corey Morris
commited on
Commit
·
f52387e
1
Parent(s):
12a9766
Made the radar plot larger
Browse files
app.py
CHANGED
|
@@ -67,11 +67,14 @@ def create_radar_chart_unfilled(df, model_names, metrics):
|
|
| 67 |
visible=True,
|
| 68 |
range=[min_value, max_value]
|
| 69 |
)),
|
| 70 |
-
showlegend=True
|
|
|
|
|
|
|
| 71 |
)
|
| 72 |
return fig
|
| 73 |
|
| 74 |
|
|
|
|
| 75 |
# Function to create a line chart
|
| 76 |
def create_line_chart(df, model_names, metrics):
|
| 77 |
line_data = []
|
|
|
|
| 67 |
visible=True,
|
| 68 |
range=[min_value, max_value]
|
| 69 |
)),
|
| 70 |
+
showlegend=True,
|
| 71 |
+
width=800, # Change the width as needed
|
| 72 |
+
height=600 # Change the height as needed
|
| 73 |
)
|
| 74 |
return fig
|
| 75 |
|
| 76 |
|
| 77 |
+
|
| 78 |
# Function to create a line chart
|
| 79 |
def create_line_chart(df, model_names, metrics):
|
| 80 |
line_data = []
|