georad commited on
Commit
1b8f14b
·
verified ·
1 Parent(s): 73aeace

Rename pages/home.py to pages/select_topic.py

Browse files
pages/{home.py → select_topic.py} RENAMED
@@ -1,10 +1,10 @@
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)
 
1
  import streamlit as st
2
  import pandas as pd
3
 
4
+ #st.title("📘SBS mapper")
5
+ #st.write("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
+ st.write("Select Topic")
8
  df_chapters = pd.read_csv("SBS_V2_Chapter_Index.csv")
9
  #df_chapters.concat({})
10
  st.dataframe(df_chapters)