dnirfana commited on
Commit
ea40f6f
1 Parent(s): f047158

Update eda.py

Browse files
Files changed (1) hide show
  1. eda.py +3 -3
eda.py CHANGED
@@ -16,9 +16,9 @@ def loading():
16
 
17
  @st.cache_data
18
  def load_data():
19
- return pd.read_csv('Transactions Data.csv')
20
 
21
- def eda():
22
  st.title('Exploratory Data Analysis')
23
 
24
  # Load Data with loading animation
@@ -339,4 +339,4 @@ def eda():
339
 
340
 
341
  if __name__ == '__main__':
342
- eda()
 
16
 
17
  @st.cache_data
18
  def load_data():
19
+ return pd.read_csv('../Transactions Data.csv')
20
 
21
+ def app():
22
  st.title('Exploratory Data Analysis')
23
 
24
  # Load Data with loading animation
 
339
 
340
 
341
  if __name__ == '__main__':
342
+ app()