Update src/streamlit_app.py
Browse files- src/streamlit_app.py +2 -2
src/streamlit_app.py
CHANGED
|
@@ -151,7 +151,7 @@ with st.form("transaction_form"):
|
|
| 151 |
st.subheader("Transaction Details")
|
| 152 |
trans_dt = st.text_input("Transaction Time (DD-MM-YYYY HH:MM)", "21-06-2020 12:14")
|
| 153 |
merchant = st.text_input("Merchant", "fraud_Kirlin and Sons")
|
| 154 |
-
category = st.
|
| 155 |
amt = st.number_input("Amount ($)", value=2.86, min_value=0.01)
|
| 156 |
unix_time = st.number_input("Unix Time", value=1371816865.0)
|
| 157 |
|
|
@@ -159,7 +159,7 @@ with st.form("transaction_form"):
|
|
| 159 |
st.subheader("Geography")
|
| 160 |
street = st.text_input("Street", "351 Darlene Green")
|
| 161 |
city = st.text_input("City", "Columbia")
|
| 162 |
-
state = st.
|
| 163 |
zip_v = st.text_input("Zip Code", "29209")
|
| 164 |
city_pop = st.number_input("City Population", value=333497, min_value=0)
|
| 165 |
lat = st.number_input("Customer Lat", value=33.9659)
|
|
|
|
| 151 |
st.subheader("Transaction Details")
|
| 152 |
trans_dt = st.text_input("Transaction Time (DD-MM-YYYY HH:MM)", "21-06-2020 12:14")
|
| 153 |
merchant = st.text_input("Merchant", "fraud_Kirlin and Sons")
|
| 154 |
+
category = st.text_input("Category", "personal_care")
|
| 155 |
amt = st.number_input("Amount ($)", value=2.86, min_value=0.01)
|
| 156 |
unix_time = st.number_input("Unix Time", value=1371816865.0)
|
| 157 |
|
|
|
|
| 159 |
st.subheader("Geography")
|
| 160 |
street = st.text_input("Street", "351 Darlene Green")
|
| 161 |
city = st.text_input("City", "Columbia")
|
| 162 |
+
state = st.text_input("State", "SC")
|
| 163 |
zip_v = st.text_input("Zip Code", "29209")
|
| 164 |
city_pop = st.number_input("City Population", value=333497, min_value=0)
|
| 165 |
lat = st.number_input("Customer Lat", value=33.9659)
|