Update app.py
Browse files
app.py
CHANGED
|
@@ -164,7 +164,8 @@ if user_menu == 'Athlete wise Analysis':
|
|
| 164 |
selected_sport = st.selectbox('Select a Sport', sport_list)
|
| 165 |
temp_df = helper.weight_v_height(df,selected_sport)
|
| 166 |
fig,ax = plt.subplots()
|
| 167 |
-
ax = sns.scatterplot(temp_df['Weight'],temp_df['Height'],hue=temp_df['Medal'],style=temp_df['Sex'],s=60)
|
|
|
|
| 168 |
st.pyplot(fig)
|
| 169 |
|
| 170 |
st.title("Men Vs Women Participation Over the Years")
|
|
|
|
| 164 |
selected_sport = st.selectbox('Select a Sport', sport_list)
|
| 165 |
temp_df = helper.weight_v_height(df,selected_sport)
|
| 166 |
fig,ax = plt.subplots()
|
| 167 |
+
ax = sns.scatterplot(x=temp_df['Weight'], y=temp_df['Height'], hue=temp_df['Medal'], style=temp_df['Sex'], s=60)
|
| 168 |
+
|
| 169 |
st.pyplot(fig)
|
| 170 |
|
| 171 |
st.title("Men Vs Women Participation Over the Years")
|