Spaces:
Runtime error
Runtime error
Update src/plot_utils.py
Browse files- src/plot_utils.py +6 -9
src/plot_utils.py
CHANGED
@@ -65,15 +65,12 @@ def plotly_plot(df:pd.DataFrame, LIST:list, ALL:list, NAMES:list, LEGEND:list, M
|
|
65 |
xanchor="left",
|
66 |
x=0.01
|
67 |
))
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
# yaxis_title="",
|
75 |
-
# title="% Played v/s Quality Score"
|
76 |
-
# )
|
77 |
|
78 |
return fig
|
79 |
|
|
|
65 |
xanchor="left",
|
66 |
x=0.01
|
67 |
))
|
68 |
+
|
69 |
+
fig.update_layout(
|
70 |
+
xaxis_title="",
|
71 |
+
yaxis_title="",
|
72 |
+
title="% Played v/s Quality Score"
|
73 |
+
)
|
|
|
|
|
|
|
74 |
|
75 |
return fig
|
76 |
|