Spaces:
Runtime error
Runtime error
Update src/plot_utils.py
Browse files- src/plot_utils.py +10 -9
src/plot_utils.py
CHANGED
@@ -61,16 +61,17 @@ def plotly_plot(df:pd.DataFrame, LIST:list, ALL:list, NAMES:list, LEGEND:list, M
|
|
61 |
fig.update_layout(height=450)
|
62 |
fig.update_layout(legend=dict(
|
63 |
yanchor="bottom",
|
64 |
-
y=-5.52
|
65 |
-
xanchor="left",
|
66 |
-
x=0.01,
|
67 |
-
orientation='h'
|
68 |
-
))
|
69 |
-
fig.update_layout(
|
70 |
-
xaxis_title="",
|
71 |
-
yaxis_title="",
|
72 |
-
title="% Played v/s Quality Score"
|
73 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
74 |
|
75 |
return fig
|
76 |
|
|
|
61 |
fig.update_layout(height=450)
|
62 |
fig.update_layout(legend=dict(
|
63 |
yanchor="bottom",
|
64 |
+
y=-5.52)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
65 |
)
|
66 |
+
# xanchor="left",
|
67 |
+
# x=0.01,
|
68 |
+
# orientation='h'
|
69 |
+
# ))
|
70 |
+
# fig.update_layout(
|
71 |
+
# xaxis_title="",
|
72 |
+
# yaxis_title="",
|
73 |
+
# title="% Played v/s Quality Score"
|
74 |
+
# )
|
75 |
|
76 |
return fig
|
77 |
|