Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -22,6 +22,7 @@ with tab1:
|
|
| 22 |
# Streamlit App Title
|
| 23 |
st.title("🏏 Player Dashboard")
|
| 24 |
st.header("View Player Stats")
|
|
|
|
| 25 |
|
| 26 |
# Creating columns for side-by-side layout
|
| 27 |
col1, col2, col3 = st.columns([1.5, 1.5, 1])
|
|
@@ -226,4 +227,5 @@ with tab1:
|
|
| 226 |
plot_data = pd.DataFrame({'Format': ['Test', 'ODI', 'T20', 'IPL'], 'Runs': runs_data.values})
|
| 227 |
fig = px.pie(plot_data, names='Format', values='Runs', title=f'{player_name} - Distribution of Bowling Wickets Across all Formats')
|
| 228 |
st.plotly_chart(fig)
|
| 229 |
-
|
|
|
|
|
|
| 22 |
# Streamlit App Title
|
| 23 |
st.title("🏏 Player Dashboard")
|
| 24 |
st.header("View Player Stats")
|
| 25 |
+
|
| 26 |
|
| 27 |
# Creating columns for side-by-side layout
|
| 28 |
col1, col2, col3 = st.columns([1.5, 1.5, 1])
|
|
|
|
| 227 |
plot_data = pd.DataFrame({'Format': ['Test', 'ODI', 'T20', 'IPL'], 'Runs': runs_data.values})
|
| 228 |
fig = px.pie(plot_data, names='Format', values='Runs', title=f'{player_name} - Distribution of Bowling Wickets Across all Formats')
|
| 229 |
st.plotly_chart(fig)
|
| 230 |
+
|
| 231 |
+
st.header("Author: L Sai Sreeja")
|