pmsi_plus / src /page /ctxt.py
basilefuchs's picture
feat cache
fb6ade0
Raw
History Blame Contribute Delete
221 Bytes
import streamlit as st
from ingest.load_data import load_grist
data = load_grist("Ctxt").sort("Code_CIM_10")
st.title("Contexte patient")
st.dataframe(data.to_pandas(), hide_index=True, width='stretch')
st.divider()