Skip to content
Snippets Groups Projects
Commit 47109f7d authored by Nicolas Barthes's avatar Nicolas Barthes
Browse files

1-samples_selection.py for server correct display

parent e0577459
No related branches found
No related tags found
No related merge requests found
......@@ -155,9 +155,9 @@ if not spectra.empty:
with c2:
st.write('Data summary:')
st.write('- the number of spectra:'+spectra.shape[0])
st.write('- the number of wavelengths:'+spectra.shape[1])
st.write('- the number of categorical variables:'+meta_data.shape[1])
st.write('- the number of spectra:'+ str(spectra.shape[0]))
st.write('- the number of wavelengths:'+ str(spectra.shape[1]))
st.write('- the number of categorical variables:'+ str(meta_data.shape[1]))
################################################### END : I- Data loading and preparation ####################################################
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment