Spaces:
Runtime error
Runtime error
Commit
·
122cc69
1
Parent(s):
da0314f
Update app.py
Browse files
app.py
CHANGED
|
@@ -4,7 +4,7 @@ import pandas as pd
|
|
| 4 |
st.title("Customer Lifetime Value App")
|
| 5 |
|
| 6 |
# Read the dataset
|
| 7 |
-
data = pd.
|
| 8 |
|
| 9 |
# Get the user id
|
| 10 |
user_id = st.selectbox('Select the user id :', data.CustomerID.unique())
|
|
|
|
| 4 |
st.title("Customer Lifetime Value App")
|
| 5 |
|
| 6 |
# Read the dataset
|
| 7 |
+
data = pd.read_csv('Online Retail.csv')
|
| 8 |
|
| 9 |
# Get the user id
|
| 10 |
user_id = st.selectbox('Select the user id :', data.CustomerID.unique())
|