From 0ab8d074ee77999d39642b3a1aae9f93c4e2215a Mon Sep 17 00:00:00 2001 From: Nicolas Barthes <nicolas.barthes@cnrs.fr> Date: Fri, 5 Apr 2024 15:34:49 +0200 Subject: [PATCH] updated requirements.txt & fixed loadings widget width --- app.py | 2 +- pages/1-samples_selection.py | 2 +- requirements.txt | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/app.py b/app.py index d2e4e9f..a68c036 100644 --- a/app.py +++ b/app.py @@ -26,5 +26,5 @@ with st.container(): st.title("NIRS Utils") st.write("Samples selection (PCA, [UMAP](https://umap-learn.readthedocs.io/en/latest/how_umap_works.html), ...), Predictive Modelling ([Pinard](https://github.com/GBeurier/pinard), [LWPLSR](https://doi.org/10.1002/cem.3209), ...), and Predictions using your data (CSV or DX files) and/or PACE NIRS Database.") #st.image(img_general) - st.markdown("### We could add documentation on the app here ###") + st.markdown("### We could add documentation here ###") diff --git a/pages/1-samples_selection.py b/pages/1-samples_selection.py index 3b88340..7aa5a6d 100644 --- a/pages/1-samples_selection.py +++ b/pages/1-samples_selection.py @@ -112,7 +112,7 @@ with container2: family="Courier", size=12, color="black"), bordercolor="Black", borderwidth=2) ) - st.plotly_chart(fig) + st.plotly_chart(fig, use_container_width = True) diff --git a/requirements.txt b/requirements.txt index 2c2f9fa..de7027c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -10,4 +10,5 @@ pyodbc>=5.1.0 matplotlib>=3.8.4 seaborn>=0.13.2 hyperopt>=0.2.7 -umap-learn>=0.5.5 \ No newline at end of file +umap-learn>=0.5.5 +jcamp>=1.2.2 \ No newline at end of file -- GitLab