Config para no usar estadísticas

This commit is contained in:
AlexLara
2026-03-05 10:01:18 -06:00
parent 79c671849f
commit f3488d8a1f
3 changed files with 36 additions and 1 deletions

View File

@@ -27,3 +27,6 @@ toolbarMode = "minimal"
[ui]
hideTopBar = true
[browser]
gatherUsageStats = false

View File

@@ -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

2
app.py
View File

@@ -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).")