Penguni commited on
Commit
52eef11
·
verified ·
1 Parent(s): 74aed8f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
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