Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -2,5 +2,7 @@
|
|
2 |
import streamlit as st
|
3 |
import pandas as pd
|
4 |
xl1 = st.file_uploader("Choose a file")
|
|
|
|
|
5 |
if xl1 is not None:
|
6 |
-
st.write(pd.read_excel(xl1))
|
|
|
2 |
import streamlit as st
|
3 |
import pandas as pd
|
4 |
xl1 = st.file_uploader("Choose a file")
|
5 |
+
xl2 = st.file_uploader("Choose a file")
|
6 |
+
|
7 |
if xl1 is not None:
|
8 |
+
st.write(pd.read_excel(xl1, sheet_name= "0.85 Threshold"))
|