Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -9,17 +9,11 @@ st.markdown('''
|
|
9 |
|
10 |
Unleash the Power of Data Exploration with our EDA App: Dive Deep, Discover Insights, and Empower Your Analysis!
|
11 |
|
12 |
-
**Credit:** App built by [Sanjana Singamsetty](https://github.com/sanjana-singamsetty)
|
13 |
-
|
14 |
-
---
|
15 |
''')
|
16 |
|
17 |
# Upload CSV data
|
18 |
-
with st.sidebar.header('
|
19 |
uploaded_file = st.sidebar.file_uploader("Upload your input CSV file", type=["csv"])
|
20 |
-
st.sidebar.markdown("""
|
21 |
-
[Example CSV input file](https://raw.githubusercontent.com/sanjana-singamsetty/sample/master/delaney_solubility_with_descriptors.csv)
|
22 |
-
""")
|
23 |
if uploaded_file is not None:
|
24 |
@st.cache_data
|
25 |
def load_csv():
|
|
|
9 |
|
10 |
Unleash the Power of Data Exploration with our EDA App: Dive Deep, Discover Insights, and Empower Your Analysis!
|
11 |
|
|
|
|
|
|
|
12 |
''')
|
13 |
|
14 |
# Upload CSV data
|
15 |
+
with st.sidebar.header('Upload your CSV data'):
|
16 |
uploaded_file = st.sidebar.file_uploader("Upload your input CSV file", type=["csv"])
|
|
|
|
|
|
|
17 |
if uploaded_file is not None:
|
18 |
@st.cache_data
|
19 |
def load_csv():
|