Adityaganesh commited on
Commit
7657b46
·
verified ·
1 Parent(s): d69831f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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("Afghanisthan batting.csv")
13
 
14
  @st.cache_data
15
  def load_bowling_data():
16
- return pd.read_csv("Afghanisthan bowling.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: