Module 1
eGFR = estimated glomerular filtration rate
Streamlit
.Direct import
or as an alias
streamlit methods.py
import streamlit as st
# A title for the page
st.title("My first web app")
# Writes text to the browser
st.write("Text to write to browser")
# Creates a text input field
# `step` is the increment for + - buttons
st.number_input("Label of input box", step=1)
# Creates a select box
st.selectbox("Label for selectbox", ["first choice","second choice"])
(See the .streamlit/config.toml file if interested)
CTRL - C
or
CMD - C