Spaces:
Runtime error
Runtime error
deepakkaura26
commited on
Commit
•
da0314f
1
Parent(s):
78659db
Update app.py
Browse files
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('
|
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())
|