From f3488d8a1f9567f86ea8d17c965f730eb5f44aff Mon Sep 17 00:00:00 2001 From: AlexLara Date: Thu, 5 Mar 2026 10:01:18 -0600 Subject: [PATCH] =?UTF-8?q?Config=20para=20no=20usar=20estad=C3=ADsticas?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .streamlit/config.toml | 3 +++ .streamlit/config_dev.toml | 32 ++++++++++++++++++++++++++++++++ app.py | 2 +- 3 files changed, 36 insertions(+), 1 deletion(-) create mode 100644 .streamlit/config_dev.toml diff --git a/.streamlit/config.toml b/.streamlit/config.toml index e75f492..7d947f6 100644 --- a/.streamlit/config.toml +++ b/.streamlit/config.toml @@ -27,3 +27,6 @@ toolbarMode = "minimal" [ui] hideTopBar = true + +[browser] +gatherUsageStats = false diff --git a/.streamlit/config_dev.toml b/.streamlit/config_dev.toml new file mode 100644 index 0000000..48c1b2e --- /dev/null +++ b/.streamlit/config_dev.toml @@ -0,0 +1,32 @@ +# for local development +[server] + +#no default browser +headless = true + +# for local development +runOnSave = true + +# Limit uploads (MB). Excel files here are small; adjust if needed +maxUploadSize = 5 + +# for local development +fileWatcherType="poll" + + +[theme] +base="light" +primaryColor = "#001d68" +backgroundColor = "#FFFFFF" +secondaryBackgroundColor = "#F4F6FA" +textColor = "#111827" +font = "sans serif" + +[client] +toolbarMode = "minimal" + +[ui] +hideTopBar = true + +[browser] +gatherUsageStats = false \ No newline at end of file diff --git a/app.py b/app.py index a948b46..8c33cae 100644 --- a/app.py +++ b/app.py @@ -356,7 +356,7 @@ with tabProfesores: st.metric("Promedio del profesor", f"{promedio_profesor:.2f}", border=True, delta=f"{ranking_profesor}/{df_rank.shape[0]}", help="Promedio de calificaciones del profesor en el periodo seleccionado.") with col3: - st.info("No se consideran calificaciones de 0 (SD, NP) en los promedios de los profesores.") + st.info("En los promedios de los profesores solo se consideran calificaiones ordinarias y que no son 0 (SD, NP).")