Skip to content

Commit

Permalink
Update streamlit_app.py
Browse files Browse the repository at this point in the history
  • Loading branch information
luis-ponce authored Feb 21, 2024
1 parent c474549 commit 98476ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion streamlit_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ def download_tutorial():
st.session_state.raw_results = pd.read_csv(results_file)
st.session_state.raw_results = st.session_state.raw_results.dropna(thresh = 1, axis = 0)
if '.xlsx' in results_file.name:
st.session_state.raw_results = pd.read_excel(results_file)
st.session_state.raw_results = pd.read_excel(results_file, index_col=None, header=None)
st.session_state.raw_results = st.session_state.raw_results.dropna(thresh = 1, axis = 0)

st.write('## Your peaklist data file:')
Expand Down

0 comments on commit 98476ac

Please sign in to comment.