georad commited on
Commit
e9cfc22
·
verified ·
1 Parent(s): e45e478

Update pages/home.py

Browse files
Files changed (1) hide show
  1. pages/home.py +5 -1
pages/home.py CHANGED
@@ -1,9 +1,13 @@
1
  import streamlit as st
 
2
 
3
  st.title("📘SBS mapper")
4
 
5
  st.header("Map internal descriptions to SBS codes in the below chapters* (work in progress)")
6
- st.image("images/SBS_Chapter_Index.png", use_container_width=True)
 
 
 
7
 
8
  st.subheader("* Demo currently limited to Chapter 20: Imaging services")
9
 
 
1
  import streamlit as st
2
+ import pandas as pd
3
 
4
  st.title("📘SBS mapper")
5
 
6
  st.header("Map internal descriptions to SBS codes in the below chapters* (work in progress)")
7
+ #st.image("images/SBS_Chapter_Index.png", use_container_width=True)
8
+ df_chapters = pd.read_csv("SBS_V2_Chapter_Index.csv")
9
+ #df_chapters.concat({})
10
+ st.dataframe(df_chapters)
11
 
12
  st.subheader("* Demo currently limited to Chapter 20: Imaging services")
13