Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -154,6 +154,7 @@ def create_country_map(df, title):
|
|
154 |
# Function to create rating distribution box chart
|
155 |
def create_rating_box_chart(df, title):
|
156 |
fig = px.box(df, x="rating", points="all", title=title)
|
|
|
157 |
return fig
|
158 |
|
159 |
# Streamlit app
|
|
|
154 |
# Function to create rating distribution box chart
|
155 |
def create_rating_box_chart(df, title):
|
156 |
fig = px.box(df, x="rating", points="all", title=title)
|
157 |
+
fig.update_xaxes(title=None) # Remove x-axis label
|
158 |
return fig
|
159 |
|
160 |
# Streamlit app
|