Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -9,11 +9,11 @@ st.title("🏏 Cricket Data Analysis 📊")
|
|
| 9 |
# Load CSV Files using Streamlit Cache
|
| 10 |
@st.cache_data
|
| 11 |
def load_batting_data():
|
| 12 |
-
return pd.read_csv("
|
| 13 |
|
| 14 |
@st.cache_data
|
| 15 |
def load_bowling_data():
|
| 16 |
-
return pd.read_csv("
|
| 17 |
|
| 18 |
# Load Data
|
| 19 |
try:
|
|
|
|
| 9 |
# Load CSV Files using Streamlit Cache
|
| 10 |
@st.cache_data
|
| 11 |
def load_batting_data():
|
| 12 |
+
return pd.read_csv("Batting_10_Teams_Final.csv")
|
| 13 |
|
| 14 |
@st.cache_data
|
| 15 |
def load_bowling_data():
|
| 16 |
+
return pd.read_csv("Bowling_10_Teams_Final.csv")
|
| 17 |
|
| 18 |
# Load Data
|
| 19 |
try:
|