deepakkaura26 commited on
Commit
da0314f
1 Parent(s): 78659db

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -1,11 +1,10 @@
1
  import streamlit as st
2
  import pandas as pd
3
- pip install openpyxl
4
 
5
  st.title("Customer Lifetime Value App")
6
 
7
  # Read the dataset
8
- data = pd.read_excel('online_retail_II.xlsx')
9
 
10
  # Get the user id
11
  user_id = st.selectbox('Select the user id :', data.CustomerID.unique())
 
1
  import streamlit as st
2
  import pandas as pd
 
3
 
4
  st.title("Customer Lifetime Value App")
5
 
6
  # Read the dataset
7
+ data = pd.read_excel('Online Retail.csv')
8
 
9
  # Get the user id
10
  user_id = st.selectbox('Select the user id :', data.CustomerID.unique())